font fix
This commit is contained in:
parent
fbf98adbc2
commit
dc1b414c2d
2 changed files with 10 additions and 9 deletions
11
app/app.css
11
app/app.css
|
@ -53,14 +53,14 @@ select {
|
||||||
padding: 2px 4px;
|
padding: 2px 4px;
|
||||||
}
|
}
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Lato';
|
font-family: "Lato";
|
||||||
src: url('font/LatoLatin-Regular.woff2') format('woff2');
|
src: url("font/LatoLatin-Regular.woff2") format("woff2");
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Lato';
|
font-family: "Lato";
|
||||||
src: url('font/LatoLatin-bold.woff2') format('woff2');
|
src: url("font/LatoLatin-Bold.woff2") format("woff2");
|
||||||
font-style: bold;
|
font-style: bold;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
@ -106,9 +106,10 @@ x-range {
|
||||||
--elapsed-color: #ddd;
|
--elapsed-color: #ddd;
|
||||||
--remaining-color: transparent;
|
--remaining-color: transparent;
|
||||||
--radius: calc(var(--track-size)/2);
|
--radius: calc(var(--track-size)/2);
|
||||||
|
display: inline-block;
|
||||||
|
position: relative;
|
||||||
width: 192px;
|
width: 192px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
position: relative;
|
|
||||||
}
|
}
|
||||||
x-range .-track,
|
x-range .-track,
|
||||||
x-range .-elapsed,
|
x-range .-elapsed,
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Lato';
|
font-family: "Lato";
|
||||||
src: url('font/LatoLatin-Regular.woff2') format('woff2');
|
src: url("font/LatoLatin-Regular.woff2") format("woff2");
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Lato';
|
font-family: "Lato";
|
||||||
src: url('font/LatoLatin-bold.woff2') format('woff2');
|
src: url("font/LatoLatin-Bold.woff2") format("woff2");
|
||||||
font-style: bold;
|
font-style: bold;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue