-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchobodev.css
More file actions
80 lines (69 loc) · 1.57 KB
/
chobodev.css
File metadata and controls
80 lines (69 loc) · 1.57 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
* {
font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
}
a {
text-decoration: none;
color: inherit;
}
a:hover {
text-decoration: underline;
text-decoration-thickness: 0.125rem;
text-underline-offset: 0.25rem;
}
#wrap {
width: 100vw;
margin: 0 auto;
box-shadow: 0.25rem 0 1rem rgba(0, 0, 0, 0.25) left, -0.25rem 0 1rem rgba(0, 0, 0, 0.25) right;
}
header {
display: flex;
justify-content: center;
align-items: center;
position: sticky;
inset: 0;
width: 100vw;
height: 4.375rem;
margin: 0 auto;
background-color: rgba(255 255 255 / 80%);
backdrop-filter: blur(0.4rem);
--webkit-backdrop-filter: blur(0.4rem);
box-shadow: 0 0 #0000, 0 0 #0000, 0 0.0625rem 0.1875rem 0 rgb(0 0 0 / 10%), 0 0.0625rem 0.125rem -0.0625rem rgb(0 0 0 / 10%);
z-index: 1;
}
#gnb ul {
list-style: none;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
margin: 0 auto;
gap: 1.25rem;
}
main section {
display: flex;
justify-content: center;
align-items: center;
width: 100vw;
height: 100vh;
}
main section:nth-child(odd) {
background-color: #cae9f6;
}
#fav-song {
flex-direction: column;
}
footer {
display: flex;
justify-content: center;
align-items: center;
width: 100vw;
height: 4.375rem;
background-color: rgba(225 225 255 / 80%);
}