This commit is contained in:
Jonas Heinrich 2022-03-06 14:16:29 +01:00
parent b797fd7018
commit 8c81d1646a
5 changed files with 26 additions and 8 deletions

BIN
files/Inter-ExtraBold.woff Normal file

Binary file not shown.

BIN
files/Inter-Regular.woff Normal file

Binary file not shown.

15
files/bulma.css vendored
View file

@ -3328,6 +3328,12 @@ fieldset[disabled] .button {
width: 100% width: 100%
} }
@media (max-width: 1024px) {
.hero-body > .container {
flex-grow: unset;
}
}
@media screen and (min-width: 1024px) { @media screen and (min-width: 1024px) {
.container { .container {
max-width: 960px max-width: 960px
@ -11914,14 +11920,14 @@ print {
.hero.is-small .hero-body { .hero.is-small .hero-body {
padding-bottom: 1.5rem; padding-bottom: 1.5rem;
padding-top: 1.5rem padding-top: 1.5rem;
} }
@media screen and (min-width: 769px), @media screen and (min-width: 769px),
print { print {
.hero.is-medium .hero-body { .hero.is-medium .hero-body {
padding-bottom: 9rem; padding-bottom: 9rem;
padding-top: 9rem padding-top: 9rem;
} }
} }
@ -11943,7 +11949,6 @@ print {
.hero.is-fullheight .hero-body>.container, .hero.is-fullheight .hero-body>.container,
.hero.is-fullheight-with-navbar .hero-body>.container, .hero.is-fullheight-with-navbar .hero-body>.container,
.hero.is-halfheight .hero-body>.container { .hero.is-halfheight .hero-body>.container {
flex-grow: 1;
flex-shrink: 1 flex-shrink: 1
} }
@ -12013,7 +12018,9 @@ print {
.hero-body { .hero-body {
flex-grow: 1; flex-grow: 1;
flex-shrink: 0; flex-shrink: 0;
padding: 3rem 1.5rem padding: 3rem 1.5rem;
display: flex;
flex-direction: column-reverse;
} }
.section { .section {

View file

@ -9,7 +9,7 @@
href="<?php echo get_stylesheet_directory_uri().'/files/Inter-Regular.woff2'; ?>" href="<?php echo get_stylesheet_directory_uri().'/files/Inter-Regular.woff2'; ?>"
as="font" crossorigin="anonymous"> as="font" crossorigin="anonymous">
<link rel="preload" <link rel="preload"
href="https://signal.org/assets/inter/Inter-ExtraBold-74e72c6bbb7844899343c4783be9b4510e32951636acde44d5b4725e2132ea03.woff2" href="<?php echo get_stylesheet_directory_uri().'/files/Inter-ExtraBold.woff2'; ?>"
as="font" crossorigin="anonymous"> as="font" crossorigin="anonymous">
<?php wp_head(); ?> <?php wp_head(); ?>
<link type="text/css" rel="stylesheet" href="<?php echo get_stylesheet_directory_uri().'/files/bulma.css'; ?>"> <link type="text/css" rel="stylesheet" href="<?php echo get_stylesheet_directory_uri().'/files/bulma.css'; ?>">
@ -78,7 +78,7 @@
</div> </div>
</div> </div>
</footer> </footer>
<script type="text/javascript" src="files/jquery-3.js"></script> <script type="text/javascript" src="<?php echo get_stylesheet_directory_uri().'/files/jquery-3.js'; ?>"></script>
</body> </body>
</html> </html>

View file

@ -313,6 +313,17 @@ html.has-navbar-fixed-top {
padding-bottom: 0; padding-bottom: 0;
} }
@media (max-width: 1024px) {
.hero-main .hero-body {
background: linear-gradient(
to bottom,
rgba(0, 0, 0, 0),
rgba(0, 0, 0, 0.6)
);
padding-bottom: 40px;
}
}
.hero-main .subtitle { .hero-main .subtitle {
color: #1whitb1b1b; color: #1whitb1b1b;
font-size: 20px; font-size: 20px;
@ -515,7 +526,7 @@ p.stickers {
font-style: normal; font-style: normal;
font-weight: 400; font-weight: 400;
font-display: swap; font-display: swap;
src: local("Inter-Regular"), url(/assets/inter/Inter-Regular-c342b1b7f7d19be1429fef29bf3af6d9e8c3e21aba846e082cdee1db8a530c83.woff2) format("woff2"), url(/assets/inter/Inter-Regular-b825f1bc25dee8a67cf5a2c461410c2c755bca29b9297c8f930fe4486ba35dd3.woff) format("woff") src: local("Inter-Regular"), url(files/Inter-Regular.woff2) format("woff2"), url(files/Inter-Regular.woff) format("woff")
} }
@font-face { @font-face {
@ -523,5 +534,5 @@ p.stickers {
font-style: normal; font-style: normal;
font-weight: 800; font-weight: 800;
font-display: swap; font-display: swap;
src: local("Inter-ExtraBold"), url(/assets/inter/Inter-ExtraBold-74e72c6bbb7844899343c4783be9b4510e32951636acde44d5b4725e2132ea03.woff2) format("woff2"), url(/assets/inter/Inter-ExtraBold-585b4ce19c2d757e2f9f6925a280650188bd2a49e7613f687dabdb15543e17eb.woff) format("woff") src: local("Inter-ExtraBold"), url(files/Inter-ExtraBold.woff2) format("woff2"), url(files/Inter-ExtraBold.woff) format("woff")
} }