1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- @include Montserrat-Regular($Regular, $file-regular, $family, $category);//1
- @include Montserrat-light($light, $file-light, $family, $category);//1
- @include Montserrat-Thin($Thin, $file-Thin, $family, $category);//1
- body{
- #header{
- a{
- font-family: $Regular;
- font-size: $font32;
- font-weight: normal;
- color: white;
- }
- .language-selector{
- li{
- &:nth-child(-n+2){
- &::after{
- font-size: $font32;
- content: "-";
- color: white;
- }
- }
- }
- }
- }
- #start{
- .content{
- p{
- font-size: $font22;
- font-family: $light;
- font-weight: normal;
- line-height: 2rem;
- }
- }
- #home{
- h1{
- font-family: $Thin;
- font-weight: normal;
- font-size: 30vw;
- }
- p, a {
- font-size: $font24;
- color: white;
- font-family: $light;
- }
- }
- .chap{
- color: white;
- font-family: $light;
- h2{
- font-family: $light;
- font-weight: normal;
- font-size: $font72;
- }
- a{
- font-family: $Regular;
- font-size: $font24;
- color: white;
- &:nth-of-type(2){
- &::before{
- margin: 0 5px;
- content: "-";
- color: white;
- }
- }
- }
- }
- }
- }
|