2021-01-11 15:42:09 +01:00
|
|
|
body {
|
|
|
|
margin: 0;
|
2021-01-11 19:12:50 +01:00
|
|
|
background-color: $back-color-2;
|
|
|
|
color: $text-color;
|
2021-01-11 15:42:09 +01:00
|
|
|
font-family: 'Source Sans Pro', sans-serif;
|
|
|
|
|
2021-01-11 19:24:57 +01:00
|
|
|
width: calc(100% - 1px);
|
2021-01-11 15:42:09 +01:00
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
button{
|
2021-01-11 19:12:50 +01:00
|
|
|
background-color: $accent-color;
|
2021-01-11 15:42:09 +01:00
|
|
|
color: #fff;
|
|
|
|
text-transform: uppercase;
|
|
|
|
border: 0;
|
|
|
|
padding: 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 5px;
|
2021-03-05 22:47:51 +01:00
|
|
|
transition: background-color $link-hover-animation-time linear;
|
2021-01-11 19:12:50 +01:00
|
|
|
|
|
|
|
&:HOVER{
|
|
|
|
background-color: $accent-color-2;
|
|
|
|
}
|
2021-01-11 15:42:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.spacer{
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
2021-01-11 19:24:57 +01:00
|
|
|
a{
|
|
|
|
padding: 0;
|
2021-01-11 19:12:50 +01:00
|
|
|
color: $accent-color;
|
2021-01-11 19:24:57 +01:00
|
|
|
text-decoration:underline;
|
2021-03-05 22:47:51 +01:00
|
|
|
transition: color $link-hover-animation-time;
|
2021-01-11 19:12:50 +01:00
|
|
|
|
|
|
|
&:HOVER{
|
|
|
|
color: $accent-color-2;
|
|
|
|
}
|
2021-01-11 15:42:09 +01:00
|
|
|
}
|
|
|
|
|
2021-01-11 19:39:22 +01:00
|
|
|
h1 {
|
|
|
|
color: $title-color;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
2021-01-11 19:24:57 +01:00
|
|
|
.red {
|
|
|
|
color: red;
|
2021-01-11 15:42:09 +01:00
|
|
|
}
|
|
|
|
|
2021-01-11 19:24:57 +01:00
|
|
|
.center{
|
|
|
|
text-align: center;
|
2021-01-20 21:43:42 +01:00
|
|
|
}
|
|
|
|
.left{
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.right{
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.block{
|
|
|
|
text-align: justify;
|
|
|
|
text-justify: auto;
|
2021-01-11 15:42:09 +01:00
|
|
|
}
|