mirror of
https://codeberg.org/aiquiral/pages.git
synced 2024-11-24 10:22:03 +00:00
Font source fix in CSS file.
This commit is contained in:
parent
2fb428ccd5
commit
9a748353aa
|
@ -1,13 +1,15 @@
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'montserratregular';
|
font-family: 'montserratregular';
|
||||||
src: url('content/fonts/Montserrat-Regular.woff2') format('woff2');
|
src: url('content/fonts/Montserrat-Regular.woff2') format('woff2'),
|
||||||
|
url('content/fonts/Montserrat-Regular.woff') format('woff');'
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'montserratblack';
|
font-family: 'montserratblack';
|
||||||
src: url('content/fonts/Montserrat-Black.woff2') format('woff2');
|
src: url('content/fonts/Montserrat-Black.woff2') format('woff2'),
|
||||||
|
url('content/fonts/Montserrat-Black.woff') format('woff');
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
@ -133,4 +135,5 @@ p {
|
||||||
img {
|
img {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
height: auto;
|
height: auto;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue