-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
161 lines (146 loc) · 4.63 KB
/
index.html
File metadata and controls
161 lines (146 loc) · 4.63 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/general.css" />
<link rel="stylesheet" href="css/brand-colors.css" />
<link rel="stylesheet" href="css/button-styles.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Roboto:wght@400;700&display=swap"
rel="stylesheet"
/>
<title>Design System</title>
</head>
<body>
<section class="hero">
<h1>Design system</h1>
<div class="divider"></div>
<p>
I started developing this design system as a Codecademy's "Full Stack
Developer Path" project.
</p>
</section>
<section class="brand-colors">
<h1>Brand colors</h1>
<div class="content">
<section>
<h2>Primary</h2>
<div class="colors">
<div class="single-color">
<div class="color cornflower-blue"></div>
<div class="description">
<p>Cornflower Blue</p>
<p>#6495ed</p>
</div>
</div>
<div class="single-color">
<div class="color alice-blue"></div>
<div class="description">
<p>Alice Blue</p>
<p>#f0f8ff</p>
</div>
</div>
<div class="single-color">
<div class="color light-grey"></div>
<div class="description">
<p>Light Grey</p>
<p>#d3d3d3</p>
</div>
</div>
<div class="single-color">
<div class="color black"></div>
<div class="description">
<p>Black</p>
<p>#000000</p>
</div>
</div>
<div class="single-color">
<div class="color white"></div>
<div class="description">
<p>White</p>
<p>#ffffff</p>
</div>
</div>
</div>
</section>
<section>
<h2>Secondary</h2>
<div class="colors">
<div class="single-color">
<div class="color coral"></div>
<div class="description">
<p>Coral</p>
<p>#ff7f50</p>
</div>
</div>
<div class="single-color">
<div class="color lemon-chiffon"></div>
<div class="description">
<p>Lemon Chiffon</p>
<p>#fffacd</p>
</div>
</div>
<div class="single-color">
<div class="color light-steel-blue"></div>
<div class="description">
<p>Light Steel Blue</p>
<p>#b0c4de</p>
</div>
</div>
<div class="single-color">
<div class="color medium-orchid"></div>
<div class="description">
<p>Medium Orchid</p>
<p>#ba55d3</p>
</div>
</div>
<div class="single-color">
<div class="color peach-puff"></div>
<div class="description">
<p>Peach Puff</p>
<p>#ffdab9</p>
</div>
</div>
<div class="single-color">
<div class="color teal"></div>
<div class="description">
<p>Teal</p>
<p>#008080</p>
</div>
</div>
</div>
</section>
</div>
</section>
<section class="button-styles">
<h1>Button Styles</h1>
<div class="content">
<div>
<h3>Standard button</h3>
<button>Button</button>
<h3>Standard hover button</h3>
<button class="hover">Button</button>
<h3>Standard pressed button</h3>
<button class="active">Button</button>
</div>
<div>
<h3>Disabled button</h3>
<button disabled="disabled">Button</button>
<h3>Warning button</h3>
<button class="warning">Button</button>
<h3>Positive button</h3>
<button class="positive">Button</button>
</div>
<div>
<h3>Long button</h3>
<button class="long">Long button</button>
<h3>Disabled long button</h3>
<button class="long" disabled>Long button</button>
</div>
</div>
</section>
</body>
</html>