-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (68 loc) · 1.3 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/* 345995 - bdazzled blue
228CDB - tufts blue
253031 - charleston green
CFE8EF - columbia blue */
a {
text-decoration: none;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
--bg-color: #cfe8ef;
--primary-color: #228cdb;
--primary-color-dark: #345995;
--text-color: #00082f;
}
body.dark-blue {
--bg-color: #00082f;
--text-color: #ffffff;
}
body {
background-color: var(--bg-color);
color: var(--text-color);
font-family: "Roboto", sans-serif;
}
.container {
width: 300px;
margin: 50px auto;
text-align: center;
}
img {
width: 100%;
}
img.avatar {
width: 100px;
height: 100px;
padding: 3.7px;
border: var(--primary-color) solid 4px;
border-radius: 50%;
}
h1 {
margin-bottom: 25px;
font-size: 32px;
}
ul {
list-style: none;
}
ul li a {
width: 100%;
height: 53px;
margin-bottom: 16px;
background-color: var(--primary-color);
border-radius: 6px;
color: white;
text-transform: uppercase;
font-size: 14px;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 400ms;
}
/* pseudo-class */
ul li a:hover {
background-color: var(--primary-color-dark);
/* background-color: #364fc7; */
}