consolidate
This commit is contained in:
parent
0ffb0aacfd
commit
3f9fa188a0
3 changed files with 15 additions and 37 deletions
|
@ -107,24 +107,3 @@ hr {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
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%;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
|
@ -15,20 +15,4 @@
|
||||||
|
|
||||||
color: var(--text);
|
color: var(--text);
|
||||||
background-color: var(--background);
|
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);
|
|
||||||
}
|
|
||||||
}
|
}
|
15
astro/public/styles/css/mobile.css
Normal file
15
astro/public/styles/css/mobile.css
Normal 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%;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue