-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
118 lines (95 loc) · 1.55 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: url(./assets/background.jpg) top center no-repeat;
background-size: cover;
min-height: 100vh;
height: auto;
}
body * {
font-family: "Roboto", sans-serif;
color: #ffffff;
}
#container {
width: 100%;
max-width: 480px;
margin: 50px auto 0px;
padding: 0 30px;
}
/* HEADER */
#header {
text-align: center;
padding: 24px;
}
#header img {
width: 210px;
border-radius: 50%;
overflow: hidden;
margin-bottom: 35px;
}
#header h1 {
font-size: 2rem;
margin-bottom: 12px;
}
#header p {
font-size: 0.75rem;
color: #f5bd4f;
}
/* LINKS */
ul {
list-style: none;
display: flex;
flex-direction: column;
gap: 20px;
}
ul li a {
display: flex;
align-items: center;
gap: 8px;
padding: 20px 50px;
background: rgba(113, 197, 135, 0.2);
border-radius: 50px;
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
text-transform: uppercase;
text-decoration: none;
font-weight: 500;
transition: background 0.2s;
}
ul li a i {
font-size: 2rem;
}
ul li a:hover {
background-color: rgba(255, 255, 255, 0.1);
}
/* FOOTER */
#social-media {
display: flex;
justify-content: center;
gap: 8px;
padding: 24px 0;
font-size: 24px;
}
#social-media a {
text-decoration: none;
}
#social-media a i {
font-size: 2rem;
color: #a99060;
transition: color 0.2s;
}
#social-media a:hover i {
color: #ffffff;
}
footer {
padding: 24px 0;
text-align: center;
font-size: 0.75rem;
opacity: 50%;
}
footer span {
color: red;
}