-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
93 lines (75 loc) · 1.4 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
90
91
92
93
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
--bg-color: #f7bbd2;
--text-color: #1F000B;
--primary-color: #D6336C;
--primary-color-black: #A61E4D;
}
body {
background-color: var(--bg-color);
font-family: 'Roboto', sans-serif;
}
a {
text-decoration: none;
}
p {
font-family: 'Roboto Mono', monospace;
font-weight: 400;
opacity: 0.8;
font-size: 18px;
}
.container {
text-align: center;
width: 400px;
margin: 60px auto;
}
img {
width: 100px;
height: 100px;
border-radius: 50px;
padding: 4px;
border: var(--primary-color) solid 4px;
}
ul {
list-style: none;
margin: 48px 0;
}
h1 {
font-size: 32px;
color: var(--text-color);
margin-top: 24px;
margin-bottom: 8px;
}
ul li a {
height: 53px;
display: flex;
align-items: center;
justify-content: center;
background: var(--primary-color);
color: white;
text-transform: uppercase;
font-size: 14px;
margin-bottom: 16px;
border-radius: 6px;
transition: background 400ms;
}
ul li a:hover{
background:var(--primary-color-black) ;
}
footer {
font-weight: 500;
font-size: 12px;
opacity: 0.6;
color: black;
transition: opacity 400ms;
}
footer a {
color: black;
}
footer:hover {
opacity: 2;
}