-
Notifications
You must be signed in to change notification settings - Fork 0
/
nav.css
84 lines (71 loc) · 1.38 KB
/
nav.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
/* General Navbar Styling */
.header {
width: 100%;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
position: relative;
z-index: 1000;
}
.navbar {
background-color: #fff;
padding: 1rem 2rem;
}
.navbar-brand {
font-family: 'Sevillana', cursive;
font-size: 1.5rem;
color: #ff69b4;
font-weight: bold;
}
.navbar-toggler {
border: none;
outline: none;
}
.navbar-toggler-icon {
color: #ff69b4;
}
.navbar-collapse {
justify-content: flex-end;
}
.navbar-nav .nav-item .nav-link {
color: #333;
font-weight: 500;
padding: 0.5rem 1rem;
transition: color 0.3s;
}
.navbar-nav .nav-item .nav-link:hover {
color: #ff69b4;
}
/* Button Styling */
.buttons .btn {
border-radius: 20px;
padding: 0.5rem 1.2rem;
font-weight: 500;
transition: all 0.3s ease;
}
.buttons .btn-outline-primary {
color: #ff69b4;
border-color: #ff69b4;
}
.buttons .btn-outline-primary:hover {
background-color: #ff69b4;
color: #fff;
}
.buttons .btn-primary {
background-color: #ff69b4;
border-color: #ff69b4;
color: #fff;
}
.buttons .btn-primary:hover {
background-color: #ff4081;
border-color: #ff4081;
}
/* Responsive Adjustments */
@media (max-width: 991px) {
.navbar-nav {
text-align: center;
}
.buttons {
display: flex;
justify-content: center;
margin-top: 1rem;
}
}