-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
105 lines (91 loc) · 1.76 KB
/
styles.css
File metadata and controls
105 lines (91 loc) · 1.76 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
100
101
102
103
104
105
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html, body {
width: 100%;
height: 100%;
overflow-x: hidden;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #fff;
}
.nav {
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
height: 60px;
width: 100%;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 1000;
}
.nav-links {
display: flex;
list-style: none;
justify-content: center;
align-items: center;
flex-wrap: wrap;
width: 100%;
padding: 0 10px;
}
.nav-links li {
margin: 5px 10px;
}
.nav-links a {
text-decoration: none;
color: #333;
font-weight: 600;
letter-spacing: 0.5px;
padding: 8px 15px;
border-radius: 25px;
transition: all 0.3s ease;
display: inline-block;
white-space: nowrap;
}
.nav-links a:hover {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
transform: translateY(-2px);
}
.content {
width: 100%;
max-width: 100%;
min-height: calc(100vh - 60px);
display: flex;
justify-content: center;
align-items: flex-start;
background-color: #fff;
overflow-x: hidden;
}
.musicnav {
padding: 20px;
}
@media (max-width: 600px) {
.nav {
height: auto;
min-height: 60px;
padding: 10px 0;
}
.nav-links {
justify-content: center;
}
.nav-links li {
margin: 5px;
}
.nav-links a {
padding: 6px 12px;
font-size: 0.9rem;
}
}
@media (max-width: 400px) {
.nav-links a {
padding: 5px 10px;
font-size: 0.85rem;
}
}