2021-03-28 21:13:14 +00:00
|
|
|
@charset "utf-8";
|
2021-03-25 13:19:01 +00:00
|
|
|
|
2021-03-28 21:13:14 +00:00
|
|
|
// Branding
|
2021-03-29 12:52:05 +00:00
|
|
|
$autonomic-red: #EE4A33;
|
2021-03-28 21:13:14 +00:00
|
|
|
$coopcloud-blue: #202674;
|
|
|
|
$coopcloud-pink: #ff4f88;
|
2021-03-29 12:52:05 +00:00
|
|
|
$white: white;
|
2021-03-28 21:13:14 +00:00
|
|
|
$text-color: #1C1C1C;
|
|
|
|
$bg-color: #EFEFEF;
|
|
|
|
|
|
|
|
$footer-background-color: $coopcloud-blue;
|
|
|
|
$footer-color: true;
|
|
|
|
|
2021-03-29 12:52:05 +00:00
|
|
|
$danger: $autonomic-red;
|
2021-03-28 21:13:14 +00:00
|
|
|
|
|
|
|
// HACK: Changing button behaviour globally as quick fix for the "visit: autonomic.zone" button
|
|
|
|
$button-border-width: 2px;
|
2021-03-29 12:52:05 +00:00
|
|
|
$button-hover-border-color: $white;
|
|
|
|
$button-focus-border-color: $white;
|
|
|
|
$button-active-border-color: $white;
|
|
|
|
$button-ghost-border-color: $white;
|
|
|
|
$button-ghost-hover-color: $white;
|
|
|
|
$button-text-hover-color: $white;
|
|
|
|
$button-focus-box-shadow-size: 0;
|
2021-03-28 21:13:14 +00:00
|
|
|
|
|
|
|
@import "./bulma/bulma.sass";
|
2021-03-28 14:40:27 +00:00
|
|
|
|
|
|
|
@mixin public-sans-family($weight, $uri) {
|
|
|
|
font-family: 'Public Sans';
|
|
|
|
src: url($uri) format("woff2");
|
|
|
|
font-weight: $weight;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
@include public-sans-family(bold, '../font/publicsans-bold.woff2')
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
@include public-sans-family(light, '../font/publicsans-light.woff2')
|
|
|
|
}
|
2021-03-25 13:19:01 +00:00
|
|
|
|
2021-03-28 14:40:27 +00:00
|
|
|
body {
|
2021-03-28 21:13:14 +00:00
|
|
|
background-color: $bg-color;
|
|
|
|
color: $text-color;
|
2021-03-28 14:40:27 +00:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2021-03-28 21:13:14 +00:00
|
|
|
font-family: 'Public Sans', sans-serif;
|
2021-03-25 13:19:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.question {
|
2021-03-28 14:40:27 +00:00
|
|
|
padding: 10px;
|
2021-03-25 13:19:01 +00:00
|
|
|
h2 {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 2em;
|
|
|
|
margin-bottom: 9px;
|
|
|
|
}
|
|
|
|
p {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-28 14:40:27 +00:00
|
|
|
|
|
|
|
.section {
|
|
|
|
padding: 0 5%;
|
|
|
|
#who-is-involved {
|
|
|
|
padding: 60px 10%;
|
|
|
|
.column{
|
|
|
|
padding: 0, 30px;
|
|
|
|
}
|
|
|
|
h1 {
|
|
|
|
font-size: 2rem;
|
|
|
|
}
|
2021-03-29 12:52:05 +00:00
|
|
|
|
2021-03-28 14:40:27 +00:00
|
|
|
}
|
|
|
|
.questions {
|
|
|
|
$top-bottom-padding: 60px;
|
|
|
|
padding-top: $top-bottom-padding;
|
|
|
|
padding-bottom: $top-bottom-padding;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-28 21:13:14 +00:00
|
|
|
#header {
|
|
|
|
background-color: $coopcloud-pink;
|
|
|
|
padding: 10px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-03-28 14:40:27 +00:00
|
|
|
.is-autonomic {
|
2021-03-29 12:52:05 +00:00
|
|
|
background-color: $autonomic-red;
|
|
|
|
color: $white;
|
|
|
|
a {
|
|
|
|
color: $white;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2021-03-25 13:19:01 +00:00
|
|
|
}
|
|
|
|
|
2021-03-28 21:13:14 +00:00
|
|
|
// Do not show server image when using mobile viewport
|
|
|
|
@media all and (min-width: 768px) {
|
|
|
|
#server-hero {
|
|
|
|
background-image: url("/svg/hero-server.svg");
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 20%;
|
|
|
|
background-position: calc(100% - 20px) ;
|
|
|
|
}
|
2021-03-25 13:19:01 +00:00
|
|
|
}
|
|
|
|
|
2021-03-28 21:13:14 +00:00
|
|
|
|
2021-03-25 13:19:01 +00:00
|
|
|
.page {
|
2021-03-28 14:40:27 +00:00
|
|
|
padding: 0 7.5%;
|
2021-03-25 13:19:01 +00:00
|
|
|
}
|