CHANGE section design to be more dynamic

This commit is contained in:
Hoernschen 2022-03-19 23:54:55 +01:00
parent 6032aebe80
commit 7239b2c45e
No known key found for this signature in database
GPG key ID: 8B027F540E7DBD58
14 changed files with 90 additions and 83 deletions

View file

@ -1,4 +1,12 @@
$color: {{ .Param "color" }};
$font: {{ .Param "font" }};
@font-face {
font-family: $font;
src: url("/fonts/#{$font}/#{$font}-Regular.ttf") format('truetype');
font-weight: 400;
font-style: normal;
}
html {
scroll-behavior: smooth;
@ -12,8 +20,11 @@ body {
margin: 0;
display: flex;
flex-direction: column;
font-family: system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji';
// font-family: system-ui,-apple-system,'Segoe UI',$font,Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji';
color: #333;
font-family: $font;
font-weight: 400;
font-style: normal;
}
h1 {
@ -56,7 +67,6 @@ button {
[class*="col-"] {
float: left;
padding: 1.5rem 1.5rem;
height: 100%;
}
@media screen and (max-width: 600px) {
@ -187,18 +197,10 @@ button {
/* Funding */
.funding-logo {
width: 15rem;
width: 14rem;
padding: 1.5rem;
}
.reference-logo {
max-height: 15rem;
max-width: 15rem;
padding: 1.5rem;
/* -webkit-filter: grayscale(100%);
filter: grayscale(100%); */
}
.services {
padding: 1.5rem 0rem;
}