website/scss/_general.scss

50 lines
645 B
SCSS
Raw Normal View History

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-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-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-11 15:42:09 +01:00
}