38 lines
393 B
CSS
38 lines
393 B
CSS
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
padding-top: 4rem;
|
|
}
|
|
|
|
|
|
.navbar-fixed {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 50;
|
|
width: 100%;
|
|
padding: 0 0;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.navbar-fixed.bg-red-500 a {
|
|
color: white !important;
|
|
}
|
|
|
|
|
|
|
|
.navbar-fixed ul {
|
|
background-color: transparent;
|
|
}
|
|
|
|
|
|
.navbar-fixed.bg-red-500 ul {
|
|
background-color: #C03030;
|
|
}
|
|
|
|
|