mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-22 14:44:21 +00:00
Merge page-tweaks into globals.css
This commit is contained in:
parent
c6d0234d04
commit
6b3a27736e
2 changed files with 53 additions and 53 deletions
|
@ -1,5 +1,4 @@
|
|||
@import "color-schemes.css";
|
||||
@import "page-tweaks.css";
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
|
@ -44,14 +43,6 @@ a:active {
|
|||
color: var(--anchor-active);
|
||||
}
|
||||
|
||||
.positive {
|
||||
color: var(--positive);
|
||||
}
|
||||
|
||||
.negative {
|
||||
color: var(--negative);
|
||||
}
|
||||
|
||||
input, button {
|
||||
padding: 8px;
|
||||
|
||||
|
@ -86,6 +77,14 @@ input[type="submit"]:active:not([disabled]), button:active:not([disabled]) {
|
|||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.positive {
|
||||
color: var(--positive);
|
||||
}
|
||||
|
||||
.negative {
|
||||
color: var(--negative);
|
||||
}
|
||||
|
||||
.square-40 {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
|
@ -167,4 +166,48 @@ input.negative, button.negative {
|
|||
margin: 0;
|
||||
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
|
||||
#page-index {
|
||||
display: grid;
|
||||
grid-template-columns: 100%;
|
||||
grid-template-rows: auto 1fr;
|
||||
|
||||
justify-content: stretch;
|
||||
text-align: center;
|
||||
|
||||
gap: 32px;
|
||||
}
|
||||
|
||||
#page-index .hero-titles {
|
||||
align-self: center;
|
||||
grid-row: 1;
|
||||
}
|
||||
|
||||
#page-index .hero-titles h1 {
|
||||
font-size: 10rem;
|
||||
}
|
||||
|
||||
#page-index .hero-titles h2 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
|
||||
@media (max-width: 640px) or (max-height: 640px) {
|
||||
#page-index .hero-titles h1 {
|
||||
font-size: 5rem;
|
||||
}
|
||||
|
||||
#page-index .hero-titles h2 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
#page-index .hero-action {
|
||||
align-self: start;
|
||||
justify-self: center;
|
||||
|
||||
grid-row: 2;
|
||||
|
||||
max-width: 800px;
|
||||
width: 100%;
|
||||
}
|
||||
|
|
|
@ -1,43 +0,0 @@
|
|||
#page-index {
|
||||
display: grid;
|
||||
grid-template-columns: 100%;
|
||||
grid-template-rows: auto 1fr;
|
||||
|
||||
justify-content: stretch;
|
||||
text-align: center;
|
||||
|
||||
gap: 32px;
|
||||
}
|
||||
|
||||
#page-index .hero-titles {
|
||||
align-self: center;
|
||||
grid-row: 1;
|
||||
}
|
||||
|
||||
#page-index .hero-titles h1 {
|
||||
font-size: 10rem;
|
||||
}
|
||||
|
||||
#page-index .hero-titles h2 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
|
||||
@media (max-width: 640px) or (max-height: 640px) {
|
||||
#page-index .hero-titles h1 {
|
||||
font-size: 5rem;
|
||||
}
|
||||
|
||||
#page-index .hero-titles h2 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
#page-index .hero-action {
|
||||
align-self: start;
|
||||
justify-self: center;
|
||||
|
||||
grid-row: 2;
|
||||
|
||||
max-width: 800px;
|
||||
width: 100%;
|
||||
}
|
Loading…
Reference in a new issue