1
Fork 0
mirror of https://github.com/Steffo99/festa.git synced 2024-10-16 15:07:27 +00:00
festa/styles/page-tweaks.css

44 lines
679 B
CSS
Raw Normal View History

2022-05-29 03:00:48 +00:00
#page-index {
display: grid;
grid-template-columns: 100%;
2022-06-01 16:54:59 +00:00
grid-template-rows: auto 1fr;
2022-05-29 02:01:56 +00:00
2022-06-01 16:54:59 +00:00
justify-content: stretch;
2022-05-29 02:01:56 +00:00
text-align: center;
2022-06-01 16:54:59 +00:00
gap: 32px;
2022-05-29 02:01:56 +00:00
}
2022-05-29 03:00:48 +00:00
#page-index .hero-titles {
align-self: center;
grid-row: 1;
}
2022-06-01 16:54:59 +00:00
#page-index .hero-titles h1 {
2022-05-29 02:01:56 +00:00
font-size: 10rem;
}
2022-06-01 16:54:59 +00:00
#page-index .hero-titles h2 {
2022-05-29 02:01:56 +00:00
font-size: 2.5rem;
}
2022-05-29 03:00:48 +00:00
@media (max-width: 640px) or (max-height: 640px) {
2022-06-01 16:54:59 +00:00
#page-index .hero-titles h1 {
2022-05-29 02:01:56 +00:00
font-size: 5rem;
}
2022-06-01 16:54:59 +00:00
#page-index .hero-titles h2 {
2022-05-29 02:01:56 +00:00
font-size: 1.5rem;
}
}
2022-05-29 03:00:48 +00:00
#page-index .hero-action {
align-self: start;
2022-06-01 16:54:59 +00:00
justify-self: center;
2022-05-29 03:00:48 +00:00
grid-row: 2;
2022-06-01 16:54:59 +00:00
max-width: 800px;
width: 100%;
2022-05-29 03:00:48 +00:00
}