-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchisme.css
More file actions
71 lines (63 loc) · 1.27 KB
/
chisme.css
File metadata and controls
71 lines (63 loc) · 1.27 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
/* Reset and base styles */
html,
body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
background-color: #f7b6c8;
font-family: "Helvetica Neue", sans-serif;
overflow-x: hidden;
position: relative;
}
/* Navbar styles */
.navbar-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(10px);
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.5rem 1.5rem;
z-index: 10;
box-sizing: border-box;
}
.podcast-name {
font-weight: 900;
font-size: 1.5rem;
color: #ff69b4;
text-decoration: none;
}
.nav-links {
list-style: none;
margin: 0;
padding: 0;
display: flex;
gap: 1.2rem;
}
.nav-links li a {
text-decoration: none;
color: black;
font-weight: 600;
font-size: 1rem;
transition: color 0.3s ease;
}
.nav-links li a:hover {
color: #ff69b4;
}
/* Mobile menu button hidden since you want exact desktop nav */
.menu-toggle {
display: none;
}
/* Container for main content, with top padding for navbar space */
.container,
.form-wrapper {
padding-top: 60px; /* prevent content from hiding under navbar */
position: relative;
z-index: 5;
box-sizing: border-box;
}
/* Blob background and other styles here unchanged... */