forked from GoneRogueProductions/chordcss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
107 lines (105 loc) · 3.98 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<style>
html,
body {
margin: 0!important;
}
* {
font-family:var(--c-monospace);
}
.c-nav a{
color:white;
font-size:2vw;
padding:1%;
cursor: pointer;
}
.c-nav {
background-color: var(--c-b);
transition-duration: 0.5s;
}
.c-nav img {
cursor: pointer;
}
.c-nav img:hover {
transform:scale(1.2);
margin: 0 15px;
}
.c-nav a::before {
cursor: pointer;
}
.navbar-home:hover::before {
transition-duration: 0.5s;
content: 'Home ';
}
.navbar-github:hover::before {
transition-duration: 0.5s;
content: 'Github ';
}
.navbar-file:hover::before {
transition-duration: 0.5s;
content: 'Dev Version';
}
.navbar-stable:hover::before {
transition-duration: 0.5s;
content: 'Stable Version';
}
.navbar-about:hover::before {
transition-duration: 0.5s;
content: 'About Us';
}
a {
font-size: 30px !important;
}
a:hover {
color:lightskyblue;
}
.right:hover {
color:lightskyblue;
}
a.right {
color:white
}
</style>
<link rel="stylesheet" href="https://getchord.ml/main.css">
<link rel="stylesheet" href="https://getchord.ml/templates/coding/main.css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<script type="text/javascript" src="filesize.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="https://getchord.ml/logos/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://getchord.ml/logos/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://getchord.ml/logos/favicons/favicon-16x16.png">
<link rel="manifest" href="https://getchord.ml/logos/favicons/site.webmanifest">
<link rel="mask-icon" href="https://getchord.ml/logos/favicons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="https://getchord.ml/logos/favicons/favicon.ico">
<meta name="msapplication-TileColor" content="#00aba9">
<meta name="msapplication-config" content="https://getchord.ml/logos/favicons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<meta name="description" content="ChordCSS - the must-need CSS framework. The coolest CSS framework to ever exist. Include with every project. Click here to try this now.">
<title>ChordCSS - the essential CSS toolkit</title>
</head>
<body class="c-bg-b">
<div class="c-nav c-nav-sticky">
<img onclick="location.href='/index.html';" src="https://gonerogueproductions.github.io/chordcss/logos/logo.png" height="100" alt="ChordCSS">
<a href="index.html" class="c-no-decoration navbar-home"><i class="ci-house"></i></a>
<a href="http://github.com/gonerogueproductions/chordcss" class="c-no-decoration navbar-github"><i class="ci-github"></i></a>
<a href="/main.css" class="c-no-decoration navbar-file"><i class="ci-file"></i></a>
<a href="/archive/v0.01.min.css" class="c-no-decoration navbar-stable"><i class="ci-lock"></i></a>
</div>
<div class="c-container">
<h1><img src="https://gonerogueproductions.github.io/chordcss/logos/logo.png" height="100" alt="ChordCSS"></h1>
<h2 class="c-h2">
chordcss. The best css framework out there. You should use it. You know you want to. Coded by a small but dedicated team of developers.
We have made chordcss a responsive, beginner friendly framework. On our homepage we have a <b>full</b>
set of docs, taking you through the usage of our framework. The footprint is a mere 4kb.
We even built our homepage entirely using chordcss - no other frameworks!
Amazing - check out the docs on our <i class="ci-github no">GitHub</i> for more!
<br>
<br>
<a float="right" href="about.html" class=" c-no-decoration right">About Us</a>
</h2>
</div>
</body>
</html>