-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
89 lines (74 loc) · 1.16 KB
/
styles.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
:root {
--background-color: #F9F9FA;
--foreground-color: #333333;
--highlight: orange;
--font-family: Helvetica, sans-serif;
}
body {
text-align: center;
margin: 0 auto;
font: 14px var(--font-family);
color: var(--foreground-color);
background-color: var(--background-color);
width: 620px;
max-width: 90%;
}
::selection {
background-color: var(--highlight);
color: white;
}
header {
font-size: 2rem;
margin-top: 3rem;
}
header h1 {
margin-bottom: 1rem;
}
h5 {
font-size: 1rem;
margin-bottom: 0;
border-bottom: 1px dashed orange;
display: inline-block;
}
/* ** SECTION ** */
section {
display: block;
text-align: left;
margin: 0 auto;
}
section summary {
display: flex;
}
section summary aside {
display: flex;
align-items: center;
width: 4rem;
padding-left: 1.5rem;
padding-right: 1.5rem;
}
/****************/
/* ** FOOTER ** */
footer {
text-align: right;
}
footer a i {
font-size: 1.5rem;
}
/****************/
a {
color: var(--foreground-color);
text-decoration: none;
}
a:hover {
color: var(--highlight);
text-decoration: none;
}
a.twitter:hover {
color: #1DA1F3;
}
a.linkedin:hover {
color: #0077B5;
}
i {
font-size: 2rem;
}