Upload files to "static"
This commit is contained in:
@ -24,13 +24,16 @@ header nav a {
|
|||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
padding: 8px 15px;
|
padding: 8px 15px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
transition: background-color 0.3s ease, border-radius 0.3s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
header nav a:hover {
|
header nav a:hover {
|
||||||
background-color: #555;
|
background-color: #555;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
|
border-radius: 10px; /* Adds rounded corners on hover */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Dropdown styles */
|
/* Dropdown styles */
|
||||||
.dropdown {
|
.dropdown {
|
||||||
position: relative;
|
position: relative;
|
||||||
@ -137,6 +140,13 @@ pre {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Hide ASCII art on smaller screens */
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
.ascii-art.no-background {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.ascii-image {
|
.ascii-image {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 20px auto;
|
margin: 20px auto;
|
||||||
@ -175,3 +185,50 @@ pre {
|
|||||||
background-color: #003f7f;
|
background-color: #003f7f;
|
||||||
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Burger menu styles */
|
||||||
|
.burger {
|
||||||
|
display: none;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 5px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.burger div {
|
||||||
|
width: 25px;
|
||||||
|
height: 3px;
|
||||||
|
background-color: white;
|
||||||
|
transition: transform 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Dropdown menu for small screens */
|
||||||
|
.nav-links {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
gap: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-links.active {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 10px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
.nav-links {
|
||||||
|
display: none;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 10px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.burger {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-links.active {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user