website/scss/_general.scss

64 lines
913 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-03-05 22:47:51 +01:00
transition: background-color $link-hover-animation-time linear;
2021-01-11 19:12:50 +01:00
&:hover, &:active, &:focus {
2021-01-11 19:12:50 +01:00
background-color: $accent-color-2;
outline: none;
2021-01-11 19:12:50 +01:00
}
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;
}
.left{
text-align: left;
}
.right{
text-align: left;
}
.block{
text-align: justify;
text-justify: auto;
2021-01-11 15:42:09 +01:00
}