Update: fix error page theme

This commit is contained in:
Rectos VX
2024-05-08 16:26:14 +04:00
parent b69646d00b
commit 34e2128a39
5 changed files with 55 additions and 104 deletions

View File

@@ -1,5 +1,6 @@
#errorContainer {
margin: 20px; /* adjust this value as needed */
margin: 1rem 0rem 2rem;
border-radius: 3rem;
}
#helpModalDialog {
@@ -18,7 +19,7 @@
}
#helpModal .button:hover {
background-color: #005b7f;
background-color: var(--md-sys-color-primary);
}
#helpModal .features-container {
@@ -40,58 +41,21 @@
flex: 1;
}
#support-section {
background-color: #f9f9f9;
padding: 4rem;
margin-top: 1rem;
text-align: center;
}
#support-section h1 {
margin-top: 0;
}
#support-section p {
margin-top: 0;
}
#button-group {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
#home-button,
#github-button,
#discord-button {
display: inline-block;
padding: 1rem 2rem;
margin: 1rem;
background-color: #008cba;
color: #fff;
font-size: 1.2rem;
text-align: center;
text-decoration: none;
border-radius: 3rem;
transition: all 0.3s ease-in-out;
}
#github-button:hover,
#discord-button:hover,
.home-button:hover {
background-color: #005b7f;
}
.home-button {
display: block;
width: 200px;
height: 50px;
margin: 2em auto;
background-color: #008cba;
color: white;
text-align: center;
line-height: 50px;
text-decoration: none;
font-weight: bold;
border-radius: 25px;
transition: all 0.3s ease-in-out;
}
}