-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (60 loc) · 1.48 KB
/
style.css
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
/* Variables */
:root {
/* Responsive */
--extra-large-device-width: 1024px;
--large-device-width: 992px;
--medium-device-width: 768px;
--small-device-width: 544px;
--extra-small-device-width: 320px;
/* Colors */
--primary-color: #3cbac8;
--secondary-color: #ff7f66;
--tertiary-color: #f2dbc1;
--background-color: #f6f6f6;
--border-color: #d3d3e5;
--font-color: #666666;
--font-color-light: #f9f9f9;
--link-color: #4183c4;
--link-color-active: #f2472c;
/* Elements */
--border: 1px solid var(--border-color);
/* Typography */
--font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
/* Reset */
* {
box-sizing: border-box;
}
/* Elements */
a,
a:visited,
a:active {
text-decoration: none;
color: var(--link-color);
}
a:hover {
text-decoration: none;
color: var(--link-color-active);
}
ul,
ul > li {
list-style: none;
margin: 0;
padding: 0;
}
/* Layout */
html,
body {
margin: 0;
padding: 0;
background-color: var(--background-color);
}
header,
main,
footer {
padding: 1rem;
height: 100%;
width: 100%;
max-width: var(--extra-large-device-width);
margin: 0 auto;
}