-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
147 lines (126 loc) · 3.13 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!doctype html>
<meta charset="utf-8">
<title>cssrecipes</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
html {
height: 100%;
margin: 0;
padding: 0;
background: #f1f1f1;
}
body {
min-height: 100%;
margin: 0;
padding: 0;
font-family: Avenir Next, sans-serif;
line-height: 1.5rem;
}
a,
a:visited {
color: currentColor !important;
position: relative;
text-decoration: none;
}
a::before {
content: "";
position: absolute;
height: 1px;
left: 0;
right: 0;
bottom: 0;
background: currentColor;
opacity: .25;
transform: scaleX(.85) translateY(.3rem);
transition: .2s;
}
a:hover::before {
opacity: 0.75;
transform: scaleX(.95) translateY(.1rem);
}
a:active::before {
opacity: .2;
}
.cssrecipes-Light {
color: #fff;
font-weight: 300;
}
.cssrecipes-Light a { color: #fff !important }
.cssrecipes-Light a::before { background: #f1f1f1 }
.cssrecipes-Logo {
font-weight: 300;
}
.cssrecipes-Logo svg {
height: 2rem;
width: auto;
fill: currentColor;
}
.cssrecipes-Section {
max-width: 60rem;
margin: auto;
}
.cssrecipes-Header {
overflow: auto;
}
.cssrecipes-Promo {
overflow: auto;
padding: 6rem 0;
text-align: center;
background: linear-gradient(120deg, #318EDF, #46c340);
}
.cssrecipes-Promo-baseline {
display: block;
font-size: 3rem;
line-height: 3rem;
margin: 6rem auto;
text-shadow: 0 .1rem .1rem rgba(0, 0, 0, 0.4);
}
.cssrecipes-List {
text-align: center;
padding: 3rem 0;
}
.cssrecipes-List a {
display:inline-block;
margin: 1rem;
}
.cssrecipes-Footer {
font-size: .8rem;
text-align: center;
padding-top: 1rem;
}
</style>
<header class="cssrecipes-Header">
<div class="cssrecipes-Section">
<h1 class="cssrecipes-Logo">
cssrecipes
</h1>
</div>
</header>
<section class="cssrecipes-Light cssrecipes-Promo">
<div class="cssrecipes-Section">
<strong class="cssrecipes-Promo-baseline">
.r-* {}
<br />
<br />
components & utilities to cook
<br />your web apps & websites.
</strong>
<p>
<a title="github.com/cssrecipes" href="https://github.com/cssrecipes">Check out the project on GitHub</a>
</p>
</div>
</section>
<div class="cssrecipes-Section cssrecipes-List">
<a href="https://github.com/cssrecipes/defaults">defaults</a>
<a href="https://github.com/cssrecipes/reset">reset</a>
<a href="https://github.com/cssrecipes/custom-media-queries">custom-media-queries</a>
<a href="https://github.com/cssrecipes/utils">utils</a>
<a href="https://github.com/cssrecipes/vertical-rhythm">vertical-rhythm</a>
<a href="https://github.com/cssrecipes/grid">grid</a>
<a href="https://github.com/cssrecipes/tooltip">tooltip</a>
</div>
<footer class="cssrecipes-Footer">
<div class="cssrecipes-Section">
<a href="https://gitter.im/cssrecipes/cssrecipes">Join cssrecipes on gitter</a> if you have any questions.
</div>
</footer>