initial commit, boilerplate stuff
This commit is contained in:
101
src/App.css
Normal file
101
src/App.css
Normal file
@@ -0,0 +1,101 @@
|
||||
.dump-container {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.dump-description {
|
||||
font-size: 1rem;
|
||||
color: var(--color-text);
|
||||
opacity: 0.85;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
.dump-inactive-notice {
|
||||
background-color: var(--color-notice-bg);
|
||||
color: #fff;
|
||||
font-weight: 500;
|
||||
padding: 0.5rem 1rem;
|
||||
border-radius: 8px;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.dump-meta {
|
||||
text-align: center;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.dump-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.dump-actions {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 1rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.dump-actions a,
|
||||
.dump-actions button {
|
||||
background-color: var(--color-accent);
|
||||
color: #fff;
|
||||
font-weight: 500;
|
||||
padding: 0.75rem 1.5rem;
|
||||
border-radius: 8px;
|
||||
text-decoration: none;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.2s;
|
||||
}
|
||||
.dump-actions a:hover,
|
||||
.dump-actions button:hover {
|
||||
background-color: var(--color-accent-hover);
|
||||
}
|
||||
|
||||
/* Forms */
|
||||
.dump-form,
|
||||
.registration-form,
|
||||
.auth-form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.dump-form .form-group,
|
||||
.registration-form .form-group,
|
||||
.auth-form .form-group {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.dump-form input,
|
||||
.dump-form textarea,
|
||||
.registration-form input,
|
||||
.registration-form textarea,
|
||||
.auth-form input,
|
||||
.auth-form textarea {
|
||||
padding: 0.5rem 1rem;
|
||||
border-radius: 8px;
|
||||
border: 2px solid var(--color-border);
|
||||
background-color: var(--color-surface);
|
||||
color: var(--color-text);
|
||||
font-size: 1rem;
|
||||
font-family: "Saira", sans-serif;
|
||||
font-optical-sizing: auto;
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.dump-form input:disabled,
|
||||
.dump-form textarea:disabled,
|
||||
.registration-form input:disabled,
|
||||
.registration-form textarea:disabled,
|
||||
.auth-form input:disabled,
|
||||
.auth-form textarea:disabled {
|
||||
opacity: 0.6;
|
||||
}
|
||||
Reference in New Issue
Block a user