-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (62 loc) · 990 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@600&display=swap');
body {
background-image: url(https://moondecialvn.web.app/guide/m.gif);
font-family: 'Comfortaa', cursive;
font-family: sans-serif;
margin: 0;
padding: 15px;
}
.wrap {
width: 100%;
max-width: 320px;
margin: 0 auto;
}
.profile {
text-align: center;
color: #FFF;
}
.photo {
border-radius: 50%;
}
.profile_name {
font-weight: bold;
display: block;
}
.at {
font-size: 13px;
}
.links ul {
list-style: none;
padding: 0;
margin: 0;
}
.links ul li {
margin: 14px 0;
}
.link {
padding: 14px;
display: block;
background-color: #9466FF;
text-align: center;
text-decoration: none;
border-radius: 4px;
transition: ease all 0.3s;
color: #FFF;
}
.link:hover {
opacity: 0.9;
}
.card {
padding: 10px;
background-color: #FFF;
border-radius: 4px;
}
.card h3 {
margin: 0;
color: #202024;
}
.card p {
margin: 5px 0;
font-size: 13px;
color: #202024;
}