-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
73 lines (64 loc) · 1.15 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html{
--bg-color :
}
body {
background: #E5E5E5;
font-family: 'Roboto', sans-serif;
}
.container{
text-align: center;
width: 300px;
margin: 60px auto;
}
img {
width: 100%;
}
img.avatar {
border-radius: 50% ;
height: 100px;
width: 100px;
padding: 3.7px;
border: #4263EB solid 4px;
}
h1 {
font-size: 32px;
color:#00082F;
margin-top: 2rem;
margin-bottom: 0.8rem;
}
span {
font-family: 'Roboto Mono', monospace;
color: #00082F;
font-size: 18px;
}
ul {
list-style: none;
margin: 48px 0;
}
ul li a {
height: 53px;
display: flex;
gap: 16px;
align-items: center;
justify-content: center;
background: #4263EB;
text-decoration: none;
color: white;
margin-bottom: 16px;
border-radius: 6px;
transition: 0.3s;
}
ul li a:hover {
background: #364fc7;
}
footer {
font-weight: bold;
font-size: 12px;
color: #00082F;
opacity: 0.6;
}