consolidate

This commit is contained in:
nelle 2024-08-31 21:06:09 -06:00
parent 0ffb0aacfd
commit 3f9fa188a0
3 changed files with 15 additions and 37 deletions

View file

@ -107,24 +107,3 @@ hr {
display: flex;
justify-content: space-between;
}
/* Mobile */
@media (max-width: 768px) {
h1 {
font-size: 32px;
background-image: var(--accent-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-size: 400%;
background-position: 0%;
}
.ntfyForm {
display: list-item;
margin-top: -8%;
margin-bottom: 8%;
}
}

View file

@ -15,20 +15,4 @@
color: var(--text);
background-color: var(--background);
}
@media (max-width: 768px) {
:root {
font-size: 14px;
font-family: departure-mono, system-ui;
padding: 1rem;
width: 1000px;
max-width: calc(100% - 2rem);
line-height: 1.4;
margin: auto;
color: var(--text);
background-color: var(--background);
}
}

View file

@ -0,0 +1,15 @@
@media (max-width: 768px) {
:root {
font-size: 14px;
}
h1 {
font-size: 32px;
}
.ntfyForm {
display: list-item;
margin-top: -8%;
margin-bottom: 8%;
}
}