-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
83 lines (69 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
/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;500;600;700&display=swap');
body {
background-color: #2563EB;
font-family: 'Be Vietnam Pro', sans-serif;
}
.container {
padding: 4rem 15rem;
}
h1 {
font-weight: bold;
font-size: 50px;
color: white;
line-height: 52px;
margin-bottom: 0;
}
p {
font-weight: 300;
font-size: 18px;
color: white;
opacity: 0.8;
width: 65%;
margin-bottom: 55px;
}
.list {
margin-bottom: 50px;
}
.list-item {
margin-bottom: 20px;
}
a.linktree-links {
display: flex;
padding: 24px 32px;
justify-content: space-between;
border-radius: 4px;
color: white;
font-size: 18px;
text-decoration: none;
background-color: #3071FF;
border: 1px solid #4A83FF;
}
a.linktree-links:hover {
background-color: #5187FF;
}
.div-flex {
display: flex;
align-items: center;
}
.emoji {
margin-right: 20px;
}
span {
color: white;
opacity: 0.8;
font-size: 14px;
}
@media (max-width: 820px) {
.container {
padding: 3.5rem;
}
}
@media (max-width: 576px) {
.container {
padding: 1.5rem;
}
h1 {
font-size: 38px;
}
}