sforkowany z mirror/soapbox
Temporary icon for local timeline
rodzic
6c6d6297f9
commit
2ee2d79156
|
@ -9,7 +9,7 @@
|
|||
url('../fonts/roboto/roboto-regular-400.woff') format('woff'),
|
||||
url('../fonts/roboto/roboto-regular-400.ttf') format('truetype'),
|
||||
url('../fonts/roboto/roboto-regular-400.svg') format('svg');
|
||||
}
|
||||
}
|
||||
|
||||
// Roboto Regular Italic
|
||||
@font-face {
|
||||
|
@ -22,7 +22,7 @@
|
|||
url('../fonts/roboto/roboto-regular-italic-400.woff') format('woff'),
|
||||
url('../fonts/roboto/roboto-regular-italic-400.ttf') format('truetype'),
|
||||
url('../fonts/roboto/roboto-regular-italic-400.svg') format('svg');
|
||||
}
|
||||
}
|
||||
|
||||
// Roboto Light
|
||||
@font-face {
|
||||
|
@ -35,7 +35,7 @@
|
|||
url('../fonts/roboto/roboto-light-300.woff') format('woff'),
|
||||
url('../fonts/roboto/roboto-light-300.ttf') format('truetype'),
|
||||
url('../fonts/roboto/roboto-light-300.svg') format('svg');
|
||||
}
|
||||
}
|
||||
|
||||
// Roboto Light Italic
|
||||
@font-face {
|
||||
|
@ -48,7 +48,7 @@
|
|||
url('../fonts/roboto/roboto-light-italic-300.woff') format('woff'),
|
||||
url('../fonts/roboto/roboto-light-italic-300.ttf') format('truetype'),
|
||||
url('../fonts/roboto/roboto-light-italic-300.svg') format('svg');
|
||||
}
|
||||
}
|
||||
|
||||
// Roboto Bold
|
||||
@font-face {
|
||||
|
@ -61,7 +61,7 @@
|
|||
url('../fonts/roboto/roboto-bold-700.woff') format('woff'),
|
||||
url('../fonts/roboto/roboto-bold-700.ttf') format('truetype'),
|
||||
url('../fonts/roboto/roboto-bold-700.svg') format('svg');
|
||||
}
|
||||
}
|
||||
|
||||
// Roboto Bold Italic
|
||||
@font-face {
|
||||
|
@ -74,7 +74,7 @@
|
|||
url('../fonts/roboto/roboto-bold-italic-700.woff') format('woff'),
|
||||
url('../fonts/roboto/roboto-bold-italic-700.ttf') format('truetype'),
|
||||
url('../fonts/roboto/roboto-bold-italic-700.svg') format('svg');
|
||||
}
|
||||
}
|
||||
|
||||
// Montserrat Extra Bold
|
||||
// Used for all bold number, scoreboard, count displays
|
||||
|
@ -88,7 +88,7 @@
|
|||
url('../fonts/montserrat/montserrat-extra-bold-800.woff') format('woff'),
|
||||
url('../fonts/montserrat/montserrat-extra-bold-800.ttf') format('truetype'),
|
||||
url('../fonts/montserrat/montserrat-extra-bold-800.svg') format('svg');
|
||||
}
|
||||
}
|
||||
|
||||
// OpenDyslexic
|
||||
@font-face {
|
||||
|
@ -129,7 +129,7 @@
|
|||
@if $weight == 'medium' {font-weight: 500;}
|
||||
@if $weight == 'bold' {font-weight: 700;}
|
||||
@if $weight == 'extrabold' {font-weight: 800;}
|
||||
}
|
||||
}
|
||||
|
||||
// Use these mixins to define font-size and line-height
|
||||
// html and body declaration allows developer to pass px value as argument
|
||||
|
@ -139,13 +139,13 @@
|
|||
$px: $size;
|
||||
font-size: #{$px + "px"};
|
||||
font-size: #{$rem + "rem"};
|
||||
}
|
||||
}
|
||||
@mixin line-height($size) {
|
||||
$rem: ($size / 10);
|
||||
$px: $size;
|
||||
line-height: #{$px + "px"};
|
||||
line-height: #{$rem + "rem"};
|
||||
}
|
||||
}
|
||||
|
||||
// Spinster icon font
|
||||
@font-face {
|
||||
|
@ -174,6 +174,10 @@
|
|||
opacity: 0.5;
|
||||
}
|
||||
}
|
||||
.fa-site-icon:before {
|
||||
font-family: 'FontAwesome';
|
||||
content: '\f0c0';
|
||||
}
|
||||
.fa-fediverse:before {
|
||||
font-family: 'spinster' !important;
|
||||
content: "\e901";
|
||||
|
|
Ładowanie…
Reference in New Issue