44 lines
773 B
SCSS
44 lines
773 B
SCSS
/* STYLE for jannikbeyerstedt.de
|
|
* for specific template
|
|
*/
|
|
|
|
@import "../mainvariables";
|
|
|
|
main {
|
|
div.home {
|
|
text-align: center;
|
|
margin-top: 17%;
|
|
margin-bottom: 20%;
|
|
|
|
div.logo {
|
|
font-family: 'Boon-Logo', "Verdana", "Arial", sans-serif;
|
|
font-size: 24.5px;
|
|
line-height: 1.2em;
|
|
font-weight: 300;
|
|
|
|
width: 11em; // more than needed, because of fallback fonts
|
|
margin: 0 auto;
|
|
|
|
span {
|
|
color: $color_accent;
|
|
font-weight: 400;
|
|
&.firstname {
|
|
padding-left: 0.1em;
|
|
padding-right: 0.56em;
|
|
}
|
|
&.surname {
|
|
letter-spacing: -0.036em;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
p {
|
|
margin-top: 0.5em;
|
|
font-size: 14px;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
}
|
|
}
|