-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
143 lines (142 loc) Β· 4.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>css-pkg</title>
<link rel="stylesheet" href="https://unpkg.com/style.css">
<link rel="stylesheet" href="https://unpkg.com/top-bar.css/top-bar.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<style>
html { background: #fafafa; }
.header {
background: #141E30;
background: linear-gradient(to bottom, #243B55, #141E30);
color: #fff;
text-align: center;
padding-bottom: 3em;
}
.top-bar-link, .top-bar-title { color: #fff }
.top-bar-link .fa,
.top-bar-title .fa { font-size: 125% }
.top-bar-link.current-page, .top-bar-link.current-page:hover, .top-bar-link:hover { color: #fff }
.page {
margin: 3em auto;
max-width: 56rem;
padding: 0 1rem;
}
.pkgs {
display: flex;
flex-wrap: wrap;
align-content: stretch;
/* justify-content: center; */
}
.pkg {
background: #fff;
margin: 2%;
border: 1px solid lightgray;
padding: 1em;
border-radius: 4px;
width: 46%;
display: inline-block;
box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
}
.pkg > :first-child {
margin-top: 0;
}
.pkg > :last-child {
margin-bottom: 0;
}
.pkg > pre {
font-size: 75%;
padding: 0.75em;
border: 1px solid lightgray;
}
.footer {
background: #141E30;
background: linear-gradient(to top, #243B55, #141E30);
text-align: center;
padding: 3em 1em;
}
.footer p {
color: #fff;
font-size: 80%;
margin: 0;
}
.footer p:last-child {
padding-top: 3em;
}
.footer a { color: #9cf }
.footer .fa { font-size: 32px }
@media (max-width: 700px) {
.pkg {
width: 96%;
}
}
</style>
</head>
<body>
<div class="header">
<nav class="top-bar">
<a href="/" class="top-bar-title">π¦ css-pkg</a>
<div class="top-bar-right">
<a class="top-bar-link" href="https://github.com/css-pkg/">
<i class="fa fa-fw fa-github"></i>
</a>
</div>
</nav>
<h1>
π¦<br>
css-pkg
</h1>
<p>CSS packages, ready for delivery!</p>
</div>
<div class="page">
<div class="pkgs">
<div class="pkg">
<h3>
<a href="https://big-cursors.netlify.com">π big-cursors.css</a>
</h3>
<pre><code>npm i big-cursors.css</code></pre>
<p>Comically large cursors as a node packaged css module.</p>
</div>
<div class="pkg">
<h3>
<a href="https://fraktur.netlify.com">π¦ fraktur.css</a>
</h3>
<pre><code>npm i fraktur.css</code></pre>
<p>Fraktur unicode as a node packaged webfont.</p>
</div>
<div class="pkg">
<h3>
<a href="https://chicago-css.netlify.com">π¦ chicago.css</a>
</h3>
<pre><code>npm i chicago.css</code></pre>
<p>ChicagoFLF webfont as a node packaged module.</p>
</div>
<div class="pkg">
<h3>
<a href="https://go-fonts.netlify.com">π¦ go-fonts.css</a>
</h3>
<pre><code>npm i go-fonts.css</code></pre>
<p>Golang fonts as a node packaged module.</p>
</div>
<div class="pkg">
<h3>
<a href="https://lunchtype-css.netlify.com">π¦ lunchtype.css</a>
</h3>
<pre><code>npm i lunchtype.css</code></pre>
<p>Lunchtype fonts and css as a node packaged module.</p>
</div>
</div>
</div>
<div class="footer">
<p>
<a href="https://github.com/css-pkg/"><i class="fa fa-fw fa-github"></i></a>
<a href="https://twitter.com/hypermodul_es"><i class="fa fa-fw fa-twitter"></i></a>
</p>
<p>made with π» by <a href="https://ungoldman.com">nate</a> & <a href="https://bret.io">bret</a> for <a href="https://hypermodul.es">hypermodul.es</a></p>
</div>
</body>
</html>