This commit is contained in:
2024-07-26 15:54:03 -03:00
parent 341a794ffb
commit 973cd977ba
7 changed files with 6135 additions and 20 deletions

View File

@ -1,5 +1,5 @@
:root {
--light-background: #f9f9f9;
--light-background: #f0f0f0;
--dark-background: #121212;
--light-title-text: #e0e0e0;
--light-icons: #333;
@ -112,4 +112,11 @@ body {
.dark-mode .settings-menu .fa {
color: var(--dark-icons);
}
.router svg {
font-size: 26px;
color: var(--light-router-title);
}
.dark-mode .router svg {
color: var(--dark-router-title);
}

View File

@ -41,30 +41,75 @@
}
.group {
margin-bottom: 40px;
margin-bottom: 20px; /* Reduced margin between groups */
}
.group-title {
display: inline-block;
cursor: pointer;
margin-top: 10px; /* Reduced margin above group title */
}
.group-icon {
margin-right: 8px;
}
.router-container {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}
.router {
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
padding: 20px 15px; /* Added padding top and bottom */
margin: 15px; /* Added margin between boxes */
flex: 1 1 calc(33.333% - 40px); /* Adjusted for new margin */
max-width: calc(33.333% - 40px); /* Adjusted for new margin */
text-align: left;
cursor: pointer;
transition: box-shadow 0.3s ease;
box-sizing: border-box;
display: flex;
align-items: center;
}
.router svg {
font-size: 32px; /* Made the icon bigger */
margin-right: 15px; /* Added padding between icon and text */
}
.router:hover {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.router h2 {
font-size: 18px;
margin: 0;
}
.router p {
font-size: 14px;
margin: 5px 0 0;
}
.content {
padding: 20px; /* Added padding to the left and right of the webpage */
}
/* Responsive Design */
@media (max-width: 1024px) {
.router {
flex: 1 1 calc(50% - 20px);
max-width: calc(50% - 20px);
flex: 1 1 calc(50% - 40px); /* Adjusted for new margin */
max-width: calc(50% - 40px); /* Adjusted for new margin */
}
}
@media (max-width: 768px) {
.router {
flex: 1 1 calc(50% - 20px);
max-width: calc(50% - 20px);
flex: 1 1 calc(50% - 40px); /* Adjusted for new margin */
max-width: calc(50% - 40px); /* Adjusted for new margin */
}
}