1234567891011121314151617181920212223 |
- @include Montserrat-Regular($Regular, $file-regular, $family, $category);//1
- @include Montserrat-light($light, $file-light, $family, $category);//1
- body{
- #header{
- a{
- font-family: $Regular;
- font-size: $font36;
- color: white;
- }
- .language-selector{
- li{
- &:nth-child(-n+2){
- &::after{
- font-size: $font36;
- content: "-";
- color: white;
- }
- }
- }
- }
- }
- }
|