-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (84 loc) · 1.75 KB
/
style.css
File metadata and controls
99 lines (84 loc) · 1.75 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
/*background-image: url(./assets/bg-mobile.jpg);
background-repeat: no-repeat;
background-position: top center;
background-size: cover;
*/
/*backgroun color image repeat position/size */
background: url(./assets/bg-mobile.jpg) no-repeat top center/cover;
}
body * {
font-family: "Inter", sans-serif;
color: #ffffff;
}
#container {
width: 360px;
/*margin: auto;*/
margin: 56px auto 0px;
/*border: 1px solid red;*/
padding: 0 24px;
}
#profile {
text-align: center;
padding: 24px;
}
#profile img {
width: 112px;
}
#profile p {
font-weight: 500;
line-height: 24px;
margin-top: 8px;
}
/*links*/
ul {
list-style: none;
display: flex;
flex-direction: column;
gap: 16px;
padding: 16px 24px;
}
ul li a {
display: flex;
align-items: center;
justify-content: center;
padding: 16px 24px;
border-radius: 8px;
border: 1px solid var(--stroke-color-dark-mode, rgba(255, 255, 255, 0.5));
background: var(--surface-color-dark-mode, rgba(255, 255, 255, 0.1));
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
text-decoration: none;
font-weight: 500;
transition: background 0.2s;
}
/* pseudo-selector */
ul li a:hover {
border: 1.5px solid white;
background: var(--surface-color-dark-mode, rgba(255, 255, 255, 0.05));
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
}
/*social-links*/
#social-links {
display: flex;
justify-content: center;
padding: 24px 0;
font-size: 24px;
}
#social-links a {
display: flex;
align-items: center;
justify-content: center;
padding: 16px;
}
#social-links a:hover {
background: rgba(255, 255, 255, 0.2);
transition: background 0.2s;
border-radius: 50%;
}