You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.2 KiB
CSS
61 lines
1.2 KiB
CSS
.logo {
|
|
padding: 0;
|
|
width: 70px;
|
|
border-radius: 5px;
|
|
}
|
|
.logo-container {
|
|
width: 300px;
|
|
height: auto;
|
|
position: relative;
|
|
}
|
|
.logo-container strong,
|
|
.logo-container p {
|
|
padding: 0;
|
|
margin: 0;
|
|
position: absolute;
|
|
}
|
|
.logo-container strong {
|
|
top: -16px;
|
|
font-size: var(--fs-h1);
|
|
font-weight: var(--ff-sz-600);
|
|
font-family: var(--fs-secondary);
|
|
}
|
|
.logo-container p {
|
|
bottom: -22px;
|
|
font-size: var(--fs-h1);
|
|
font-family: var(--fs-secondary);
|
|
font-weight: var(--ff-sz-300);
|
|
}
|
|
ul li {
|
|
text-decoration: none;
|
|
list-style: none;
|
|
transition: 0.5s;
|
|
padding: 2rem;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
ul li:hover {
|
|
background-color: var(--clr-neutral-100);
|
|
cursor: pointer;
|
|
}
|
|
@media (max-width: 1200px) {
|
|
.logo-container strong {
|
|
top: -5px;
|
|
font-size: var(--fs-h2);
|
|
}
|
|
.logo-container p {
|
|
bottom: -5px;
|
|
font-size: var(--fs-h2);
|
|
}
|
|
}
|
|
@media (max-width: 768px) {
|
|
.navbar-toggler {
|
|
display: block;
|
|
}
|
|
.navbar-collapse {
|
|
display: none;
|
|
}
|
|
.navbar-toggler.collapsed + .navbar-collapse {
|
|
display: block;
|
|
}
|
|
} |