Add tags
This commit is contained in:
1
src/html/components/back-to-top-button.html
Normal file
1
src/html/components/back-to-top-button.html
Normal file
@ -0,0 +1 @@
|
||||
<button class="back-to-top-button" aria-label="back to top">↑</button>
|
||||
1
src/html/components/footer.html
Normal file
1
src/html/components/footer.html
Normal file
@ -0,0 +1 @@
|
||||
<footer class="footer"></footer>
|
||||
10
src/html/components/header.html
Normal file
10
src/html/components/header.html
Normal file
@ -0,0 +1,10 @@
|
||||
<header class="header">
|
||||
<div class="container">
|
||||
<img class="header__logo" draggable="false" src="./src/img/logo.png">
|
||||
<h1 class="header__heading">30 Seconds of <strong class="header__css">CSS</strong></h1>
|
||||
<p class="header__description">
|
||||
A curated collection of useful CSS snippets you can understand in 30 seconds or less.
|
||||
</p>
|
||||
<a class="github-button header__github-button" href="https://github.com/atomiks/30-seconds-of-css" data-icon="octicon-star" data-size="large" data-show-count="true" aria-label="Star atomiks/30-seconds-of-css on GitHub">Star</a>
|
||||
</div>
|
||||
</header>
|
||||
4
src/html/components/main.html
Normal file
4
src/html/components/main.html
Normal file
@ -0,0 +1,4 @@
|
||||
<main class="main" id="main">
|
||||
<div class="container">
|
||||
</div>
|
||||
</main>
|
||||
9
src/html/components/sidebar.html
Normal file
9
src/html/components/sidebar.html
Normal file
@ -0,0 +1,9 @@
|
||||
<nav class="sidebar" aria-label="Table of Contents">
|
||||
<button class="hamburger hamburger--spin sidebar__menu" type="button" aria-label="Menu" aria-expanded="false">
|
||||
<span class="hamburger-box">
|
||||
<span class="hamburger-inner"></span>
|
||||
</span>
|
||||
</button>
|
||||
<div class="sidebar__links">
|
||||
</div>
|
||||
</nav>
|
||||
1
src/html/components/tags.html
Normal file
1
src/html/components/tags.html
Normal file
@ -0,0 +1 @@
|
||||
<nav class="tags" aria-label="Filter by tags"></nav>
|
||||
15
src/html/index.html
Normal file
15
src/html/index.html
Normal file
@ -0,0 +1,15 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<title>30 Seconds of CSS</title>
|
||||
<meta name="description" content="A curated collection of useful CSS snippets you can understand in 30 seconds or less. From foundational elements such as clearfix to gradient text color and gradient cursor tracking to CSS easing and far beyond.">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png">
|
||||
<script src="./src/js/index.js" defer=""></script>
|
||||
<script async="" defer="" src="https://buttons.github.io/buttons.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="content-wrapper"></div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user