-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
123 lines (105 loc) · 2.16 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
119
120
121
122
123
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
color: #333;
background-image: url("bg2.webp");
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
background-position: center;
min-height: 100vh;
padding: 2rem 1rem;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
background-color: rgba(255, 255, 255, 0.98);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
border-radius: 12px;
backdrop-filter: blur(10px);
}
h1 {
font-family: 'Courier New', monospace;
font-size: 2.5rem;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 2rem;
text-align: center;
letter-spacing: -0.5px;
}
h2 {
font-family: 'Courier New', monospace;
font-size: 1.75rem;
font-weight: 600;
color: #2a2a2a;
margin: 2.5rem 0 1.5rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid #eaeaea;
}
.genre {
margin-bottom: 3rem;
}
.song {
margin-bottom: 1.5rem;
padding: 1.5rem;
background-color: #fafafa;
border: 1px solid #e0e0e0;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.song:hover {
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.description {
font-style: italic;
color: #666;
margin-top: 1rem;
font-size: 0.95rem;
line-height: 1.5;
padding-top: 0.5rem;
border-top: 1px solid #eee;
}
audio {
width: 100%;
margin-top: 1rem;
}
iframe {
border-radius: 8px;
margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
body {
padding: 1rem 0.5rem;
}
.container {
padding: 1.5rem;
}
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.5rem;
}
.song {
padding: 1rem;
}
}
@media screen and (max-width: 480px) {
.container {
padding: 1rem;
}
h1 {
font-size: 1.75rem;
}
.song {
margin-bottom: 1rem;
}
}