Skip to content

Instantly share code, notes, and snippets.

@EEmmanuel7
EEmmanuel7 / css-dropdown-menu-upward.markdown
Created November 10, 2023 06:37
CSS dropdown menu - upward
@EEmmanuel7
EEmmanuel7 / index.html
Created November 10, 2023 02:24
Stripe Like CSS Only Menu
<script src="https://kit.fontawesome.com/628c8d2499.js" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css" type="text/css" />
<nav id="menu">
<div class="menu-item">
<div class="menu-text">
<a href="#">Products</a>
</div>
@EEmmanuel7
EEmmanuel7 / index.html
Created March 20, 2023 03:58
PureCSS Tabs
<h1>PureCSS Tabs</h1>
<div class="pc-tab">
<input checked="checked" id="tab1" type="radio" name="pct" />
<input id="tab2" type="radio" name="pct" />
<input id="tab3" type="radio" name="pct" />
<nav>
<ul>
<li class="tab1">
<label for="tab1">First Tab</label>
@EEmmanuel7
EEmmanuel7 / PieMenu.cpp
Created December 4, 2020 19:35 — forked from thennequin/PieMenu.cpp
PieMenuAdv
struct PieMenuContext
{
static const int c_iMaxPieMenuStack = 8;
static const int c_iMaxPieItemCount = 12;
static const int c_iRadiusEmpty = 30;
static const int c_iRadiusMin = 30;
static const int c_iMinItemCount = 3;
static const int c_iMinItemCountPerLevel = 3;
struct PieMenu
@EEmmanuel7
EEmmanuel7 / index.html
Created September 14, 2020 19:36
Recursive Hover Nav ( Only CSS )
<nav>
<menu>
<menuitem id="demo1">
<a>drop</a>
<menu>
<menuitem><a>about</a></menuitem>
<menuitem>
<a>settings</a>
<menu>
<menuitem><a>Test 1</a></menuitem>
@EEmmanuel7
EEmmanuel7 / index.html
Created March 29, 2020 23:45
Three.js+ImGui JavaScript
<canvas id="output"></canvas>
@EEmmanuel7
EEmmanuel7 / filepond-multiple-file-upload.markdown
Created January 8, 2019 01:54
FilePond Multiple File Upload
@EEmmanuel7
EEmmanuel7 / credit-card-form.markdown
Created December 12, 2018 05:27
Credit Card Form
@EEmmanuel7
EEmmanuel7 / index.html
Created November 2, 2018 03:21
Responsive Mega Menu
<link href='https://fonts.googleapis.com/css?family=Roboto:400,300,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
</head>
<body class="background">
@EEmmanuel7
EEmmanuel7 / index.html
Created August 16, 2018 03:41
Twitter search form
<!-- search form -->
<div id="wrap">
<form id="nav-search" class="form-search" action="/search" role="search">
<input id="search-query" class="search-input" type="text" placeholder="Search" />
<button class="icon" type="submit"></button>
</form>
</div>