mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-05-27 09:32:35 -04:00
Adding static content to this repo
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 31 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 25 KiB |
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,36 @@
|
||||
@font-face {
|
||||
font-family: 'Material Icons';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(MaterialIcons-Regular.eot); /* For IE6-8 */
|
||||
src: local('Material Icons'),
|
||||
local('MaterialIcons-Regular'),
|
||||
url(MaterialIcons-Regular.woff2) format('woff2'),
|
||||
url(MaterialIcons-Regular.woff) format('woff'),
|
||||
url(MaterialIcons-Regular.ttf) format('truetype');
|
||||
}
|
||||
|
||||
.material-icons {
|
||||
font-family: 'Material Icons';
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-size: 24px; /* Preferred icon size */
|
||||
display: inline-block;
|
||||
line-height: 1;
|
||||
text-transform: none;
|
||||
letter-spacing: normal;
|
||||
word-wrap: normal;
|
||||
white-space: nowrap;
|
||||
direction: ltr;
|
||||
|
||||
/* Support for all WebKit browsers. */
|
||||
-webkit-font-smoothing: antialiased;
|
||||
/* Support for Safari and Chrome. */
|
||||
text-rendering: optimizeLegibility;
|
||||
|
||||
/* Support for Firefox. */
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
/* Support for IE. */
|
||||
font-feature-settings: 'liga';
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 63 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,3 @@
|
||||
@import "roboto-mixin";
|
||||
|
||||
@include roboto-font(100, italic);
|
||||
@@ -0,0 +1,3 @@
|
||||
@import "roboto-mixin";
|
||||
|
||||
@include roboto-font(100, normal);
|
||||
@@ -0,0 +1,3 @@
|
||||
@import "roboto-mixin";
|
||||
|
||||
@include roboto-font(300, italic);
|
||||
@@ -0,0 +1,3 @@
|
||||
@import "roboto-mixin";
|
||||
|
||||
@include roboto-font(300, normal);
|
||||
@@ -0,0 +1,3 @@
|
||||
@import "roboto-mixin";
|
||||
|
||||
@include roboto-font(400, italic);
|
||||
@@ -0,0 +1,3 @@
|
||||
@import "roboto-mixin";
|
||||
|
||||
@include roboto-font(400, normal);
|
||||
@@ -0,0 +1,3 @@
|
||||
@import "roboto-mixin";
|
||||
|
||||
@include roboto-font(500, italic);
|
||||
@@ -0,0 +1,3 @@
|
||||
@import "roboto-mixin";
|
||||
|
||||
@include roboto-font(500, normal);
|
||||
@@ -0,0 +1,3 @@
|
||||
@import "roboto-mixin";
|
||||
|
||||
@include roboto-font(700, italic);
|
||||
@@ -0,0 +1,3 @@
|
||||
@import "roboto-mixin";
|
||||
|
||||
@include roboto-font(700, normal);
|
||||
@@ -0,0 +1,3 @@
|
||||
@import "roboto-mixin";
|
||||
|
||||
@include roboto-font(900, italic);
|
||||
@@ -0,0 +1,3 @@
|
||||
@import "roboto-mixin";
|
||||
|
||||
@include roboto-font(900, normal);
|
||||
@@ -0,0 +1,14 @@
|
||||
|
||||
$font: 'roboto';
|
||||
|
||||
@mixin roboto-font($weight, $style) {
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
src: url(/roboto/fonts/#{$font}-#{$weight}-#{$style}.woff2) format('woff2'),
|
||||
url(/roboto/fonts/#{$font}-#{$weight}-#{$style}.woff) format('woff'),
|
||||
url(/roboto/fonts/#{$font}-#{$weight}-#{$style}.ttf) format('truetype');
|
||||
font-weight: $weight;
|
||||
font-style: $style;
|
||||
};
|
||||
};
|
||||
@@ -0,0 +1,15 @@
|
||||
|
||||
// import all fonts
|
||||
|
||||
@import "roboto-100-normal";
|
||||
@import "roboto-100-italic";
|
||||
@import "roboto-300-normal";
|
||||
@import "roboto-300-italic";
|
||||
@import "roboto-400-normal";
|
||||
@import "roboto-400-italic";
|
||||
@import "roboto-500-normal";
|
||||
@import "roboto-500-italic";
|
||||
@import "roboto-700-normal";
|
||||
@import "roboto-700-italic";
|
||||
@import "roboto-900-normal";
|
||||
@import "roboto-900-italic";
|
||||
Reference in New Issue
Block a user