mirror of
https://codeberg.org/aiquiral/pages.git
synced 2024-11-24 11:01:59 +00:00
Font source fix in CSS file.
This commit is contained in:
parent
2fb428ccd5
commit
9a748353aa
|
@ -1,13 +1,15 @@
|
|||
@font-face {
|
||||
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-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
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-style: normal;
|
||||
}
|
||||
|
@ -133,4 +135,5 @@ p {
|
|||
img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue