Stirling-PDF/src/main/resources/static/css/errorBanner.css

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

98 lines
1.6 KiB
CSS
Raw Normal View History

2023-06-02 00:12:55 +02:00
#errorContainer {
margin: 20px; /* adjust this value as needed */
2023-06-02 00:12:55 +02:00
}
#helpModalDialog {
width: 90%;
max-width: 800px;
2023-06-02 00:12:55 +02:00
}
#helpModal h1 {
text-align: center;
margin-top: 10%;
2023-06-02 00:12:55 +02:00
}
#helpModal p {
text-align: center;
margin-top: 2em;
2023-06-02 00:12:55 +02:00
}
#helpModal .button:hover {
background-color: #005b7f;
2023-06-02 00:12:55 +02:00
}
#helpModal .features-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(21rem, 3fr));
gap: 25px 30px;
2023-06-02 00:12:55 +02:00
}
#helpModal .feature-card {
border: 1px solid rgba(0, 0, 0, 0.125);
border-radius: 0.25rem;
padding: 1.25rem;
display: flex;
flex-direction: column;
align-items: flex-start;
2023-06-02 00:12:55 +02:00
}
#helpModal .feature-card .card-text {
flex: 1;
2023-06-02 00:12:55 +02:00
}
#support-section {
background-color: #f9f9f9;
padding: 4rem;
margin-top: 1rem;
text-align: center;
2023-06-02 00:12:55 +02:00
}
#support-section h1 {
margin-top: 0;
2023-06-02 00:12:55 +02:00
}
#support-section p {
margin-top: 0;
2023-06-02 00:12:55 +02:00
}
#button-group {
display: flex;
justify-content: center;
flex-wrap: wrap;
2023-06-02 00:12:55 +02:00
}
#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;
2023-06-02 00:12:55 +02:00
}
#github-button:hover,
#discord-button:hover,
.home-button:hover {
background-color: #005b7f;
2023-06-02 00:12:55 +02:00
}
.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;
}