Adding static content to this repo

This commit is contained in:
Zoe Roux 2020-03-01 02:17:08 +01:00
parent 79d8a5d17a
commit 0569f94e2b
59 changed files with 1381 additions and 0 deletions

BIN
static/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

BIN
static/icon.jpg Normal file

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.

View File

@ -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';
}

BIN
static/logo.jpg Normal file

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.

View File

@ -0,0 +1,3 @@
@import "roboto-mixin";
@include roboto-font(100, italic);

View File

@ -0,0 +1,3 @@
@import "roboto-mixin";
@include roboto-font(100, normal);

View File

@ -0,0 +1,3 @@
@import "roboto-mixin";
@include roboto-font(300, italic);

View File

@ -0,0 +1,3 @@
@import "roboto-mixin";
@include roboto-font(300, normal);

View File

@ -0,0 +1,3 @@
@import "roboto-mixin";
@include roboto-font(400, italic);

View File

@ -0,0 +1,3 @@
@import "roboto-mixin";
@include roboto-font(400, normal);

View File

@ -0,0 +1,3 @@
@import "roboto-mixin";
@include roboto-font(500, italic);

View File

@ -0,0 +1,3 @@
@import "roboto-mixin";
@include roboto-font(500, normal);

View File

@ -0,0 +1,3 @@
@import "roboto-mixin";
@include roboto-font(700, italic);

View File

@ -0,0 +1,3 @@
@import "roboto-mixin";
@include roboto-font(700, normal);

View File

@ -0,0 +1,3 @@
@import "roboto-mixin";
@include roboto-font(900, italic);

View File

@ -0,0 +1,3 @@
@import "roboto-mixin";
@include roboto-font(900, normal);

View File

@ -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;
};
};

View File

@ -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";