Use local assets

This commit is contained in:
Perflyst 2019-04-06 19:17:02 +02:00
parent f8b7f9dd82
commit 2f66cd228a
No known key found for this signature in database
GPG key ID: B0D9C8E56E999F68
4 changed files with 14 additions and 2 deletions

File diff suppressed because one or more lines are too long

View file

@ -82,7 +82,7 @@
}
</style>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
<link href="assets/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
<base href="/">
</head>

View file

@ -1,5 +1,5 @@
// styles in src/style directory are applied to the whole page
@import url('https://fonts.googleapis.com/css?family=Open+Sans:100|Roboto:300');
@import 'assets/opensans100-roboto300';
@import '../../node_modules/angular2-toaster/toaster';
@import "themes/themes";
@import "components/ibox";

View file

@ -0,0 +1,6 @@
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
src: local('Roboto Light'), local('Roboto-Light'), url(https://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmSU5fBBc9.ttf) format('truetype');
}