35 lines
620 B
Plaintext
35 lines
620 B
Plaintext
#main {
|
|
display: flex;
|
|
justify-content: center;
|
|
min-height: 100vh;
|
|
padding-top: 24px;
|
|
}
|
|
|
|
.settings-container {
|
|
width: 100%;
|
|
max-width: 800px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.messagealerts {
|
|
background: rgba(255,0,0,0.15);
|
|
color: #e2e2e2;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.settings-section {
|
|
background-color: #242424;
|
|
border: 1px solid #393b3d;
|
|
border-radius: 4px;
|
|
padding: 16px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.settings-section-title {
|
|
font-size: 1rem;
|
|
font-weight: 700;
|
|
color: #ffffff;
|
|
margin: 0 0 12px;
|
|
padding-bottom: 10px;
|
|
border-bottom: 1px solid #393b3d;
|
|
} |