-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesign-system.html
226 lines (210 loc) · 9.72 KB
/
design-system.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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Design System-TIL</title>
<link rel="icon" href="images/favicon.ico">
<meta name="description" content="A blog about what Annie learned today">
<meta name="author" content="Annie Pennell">
<meta name="keywords" content="HTML, CSS, JavaScript, React, frontend, software engineering">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Josefin+Sans:ital,wght@0,400;0,600;1,400;1,600&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/c12416527a.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles/design-system.css">
</head>
<body>
<div class="page-container">
<nav class="navbar">
<a href="index.html" class="logo">Today I Learned</a>
<a href="design-system.html">Design System</a>
</nav>
<main class="content-container">
<h1>Design System</h1>
<section class="component-wrapper">
<h2>Colors</h2>
<div class="grid-container">
<div class="grid-box primary-300">
<h4>Primary #FD4235C</h4>
</div>
<div class="grid-box secondary">
<h4>Secondary #494331</h4>
</div>
<div class="grid-box tertiary">
<h4>Tertiary #D6D6B1</h4>
</div>
<div class="grid-box gray-100">
<h4>gray-100 #F1F1E4</h4>
</div>
<div class="grid-box gray-200">
<h4>gray-200 #878472</h4>
</div>
<div class="grid-box gray-300">
<h4>gray-300 #3F3F37</h4>
</div>
<div class="grid-box gray-400">
<h4>gray-400 #161613</h4>
</div>
</div>
</section>
<section class="component-wrapper">
<h2>Typography</h2>
<h1>h1</h1>
<h2>h2</h2>
<h3>h3</h3>
<h4>h4</h4>
<p>p (body)</p>
<p><b>p.bold</b></p>
<p><em>p.italics</em></p>
<p><u>p.underlined</u></p>
<a href="#">Link</a>
<blockquote>
blockquote:
<br/>
Podcasting operational change management inside of workflows to establish a framework. Taking seamless key performance indicators offline to maximise the long tail.
</blockquote>
</section>
<section class="component-wrapper">
<h2>Components</h2>
<section class="component-wrapper">
<h3>Author Card</h3>
<section class="author-card">
<img class="avatar-lg" src="images/headshot.jpg" alt="Profile photo of author">
<div class="author-info">
<h3>Annie Pennell</h3>
<p><b>Frontend Engineer, CyberPolicy</b></p>
<p>
Annie is a visually-oriented frontend engineer who codes by day and crafts by night. She lives in Richmond, CA, with her wife and three furbabies.
</p>
</div>
</section>
</section>
<section class="component-wrapper">
<h3>Avatar</h3>
<div class="grid-container">
<img class="avatar" src="images/headshot.jpg" alt="Profile photo of author">
<img class="avatar-lg" src="images/headshot.jpg" alt="Profile photo of author">
</div>
</section>
<section class="component-wrapper">
<h3>Button</h3>
<a href="#" class="btn">Link Button</a>
<button class="btn">Real Button</button>
<button class="btn btn-inverse">Inverse Button</button>
</section>
<div class="component-wrapper">
<h3>Card</h3>
<div class="grid-container">
<section class="card">
<div class="image-wrapper">
<img src="images/adi-goldstein-mDinBvq1Sfg-unsplash.jpg" alt="Some alt text describing the image" class="card-image">
</div>
<div class="info-wrapper">
<h3>Post Title</h3>
<div class="inline-wrapper">
<p>July 31, 2020</p>
<a href="index.html" class="btn">Read</a>
</div>
</div>
</section>
<section class="card">
<div class="image-wrapper">
<img src="images/martin-w-kirst-Ap3fFS0iOiE-unsplash.jpg" alt="Some alt text describing the image" class="card-image">
</div>
<div class="info-wrapper">
<h3>Post title that's a lot longer and we want to make sure still works</h3>
<div class="inline-wrapper">
<p>August 31, 2020</p>
<a href="index.html" class="btn">Read</a>
</div>
</div>
</section>
</div>
</div>
<section class="component-wrapper">
<h3>Footer</h3>
<div class="footer-container">
<footer class="footer">
<div class="social-links">
<a href="https://github.com/apennell" target="blank" rel="noopener noreferrer" aria-label="Link to GitHub profile">
<i aria-hidden="true" class="fab fa-lg fa-github" title="GitHub"></i>
</a>
<a href="https://stackoverflow.com/users/5490423/anniep" target="blank" rel="noopener noreferrer" aria-label="Link to StackOverflow profile">
<i aria-hidden="true" class="fab fa-lg fa-stack-overflow" title="StackOverflow"></i>
</a>
<a href="https://www.linkedin.com/in/anniepennell" target="blank" rel="noopener noreferrer" aria-label="Link to LinkedIn profile">
<i aria-hidden="true" class="fab fa-lg fa-linkedin" title="LinkedIn"></i>
</a>
<a href="https://twitter.com/syntacticXsugar" target="blank" rel="noopener noreferrer" aria-label="Link to Twitter profile">
<i aria-hidden="true" class="fab fa-lg fa-twitter" title="Twitter"></i>
</a>
<a href="https://www.instagram.com/syntactic_sugar/" target="blank" rel="noopener noreferrer" aria-label="Link to Instagram profile">
<i aria-hidden="true" class="fab fa-lg fa-instagram" title="Instagram"></i>
</a>
</div>
<a href="https://anniepennell.com/" target="blank" rel="noopener noreferrer">
© Annie Pennell 2020
</a>
</footer>
</div>
</section>
<section class="component-wrapper">
<h3>Masthead</h3>
<div class="masthead">
<div class="post-info">
<img class="avatar" src="images/headshot.jpg" alt="Profile photo of author">
<div class="info-text">
<p>By Annie Pennell</p>
<p>July 31st, 2020</p>
</div>
</div>
<div class="social-widget">
<a href="#" aria-label="Link to share on LinkedIn"><i aria-hidden="true" class="fab fa-lg fa-linkedin" title="Share on LinkedIn"></i></a>
<a href="#" aria-label="Link to share on Twitter"><i aria-hidden="true" class="fab fa-lg fa-twitter" title="Share on Twitter"></i></a>
<a href="#" aria-label="Link to share on Facebook"><i aria-hidden="true" class="fab fa-lg fa-facebook" title="Share on Facebook"></i></a>
</div>
</div>
</section>
<section class="component-wrapper">
<h3>Navbar</h3>
<div class="navbar-container">
<nav class="navbar">
<a href="index.html" class="logo">Today I Learned</a>
<a href="design-system.html">Design System</a>
</nav>
</div>
</section>
<section class="component-wrapper">
<h3>Social Sharing Widget</h3>
<div class="social-widget">
<a href="#" aria-label="Link to share on LinkedIn"><i aria-hidden="true" class="fab fa-lg fa-linkedin" title="Share on LinkedIn"></i></a>
<a href="#" aria-label="Link to share on Twitter"><i aria-hidden="true" class="fab fa-lg fa-twitter" title="Share on Twitter"></i></a>
<a href="#" aria-label="Link to share on Facebook"><i aria-hidden="true" class="fab fa-lg fa-facebook" title="Share on Facebook"></i></a>
</div>
</section>
</section>
</main>
<footer class="footer">
<div class="social-links">
<a href="https://github.com/apennell" target="blank" rel="noopener noreferrer" aria-label="Link to GitHub profile">
<i aria-hidden="true" class="fab fa-lg fa-github" title="GitHub"></i>
</a>
<a href="https://stackoverflow.com/users/5490423/anniep" target="blank" rel="noopener noreferrer" aria-label="Link to StackOverflow profile">
<i aria-hidden="true" class="fab fa-lg fa-stack-overflow" title="StackOverflow"></i>
</a>
<a href="https://www.linkedin.com/in/anniepennell" target="blank" rel="noopener noreferrer" aria-label="Link to LinkedIn profile">
<i aria-hidden="true" class="fab fa-lg fa-linkedin" title="LinkedIn"></i>
</a>
<a href="https://twitter.com/syntacticXsugar" target="blank" rel="noopener noreferrer" aria-label="Link to Twitter profile">
<i aria-hidden="true" class="fab fa-lg fa-twitter" title="Twitter"></i>
</a>
<a href="https://www.instagram.com/syntactic_sugar/" target="blank" rel="noopener noreferrer" aria-label="Link to Instagram profile">
<i aria-hidden="true" class="fab fa-lg fa-instagram" title="Instagram"></i>
</a>
</div>
<a href="https://anniepennell.com/" target="blank" rel="noopener noreferrer">
© Annie Pennell 2020
</a>
</footer>
</div>
</body>
</html>