Use Ubuntu font globally
parent
79959cc696
commit
7be78e387d
File diff suppressed because one or more lines are too long
|
@ -9,6 +9,10 @@ body {
|
|||
height: 100%;
|
||||
}
|
||||
|
||||
html, body {
|
||||
font-family: 'Ubuntu-Regular', sans-serif;
|
||||
}
|
||||
|
||||
#wrapper {
|
||||
display: flex;
|
||||
#content-wrapper {
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
border: 0;
|
||||
font-weight: 900;
|
||||
content: '\f105';
|
||||
font-family: 'Font Awesome 5 Free';
|
||||
font-family: 'Font Awesome 6 Free', sans-serif;
|
||||
}
|
||||
}
|
||||
&.show {
|
||||
|
|
|
@ -4,8 +4,9 @@
|
|||
// Import Custom Variables
|
||||
@import "variables.scss";
|
||||
|
||||
// Import FA
|
||||
// Import Fonts
|
||||
@import "../fontawesome.scss";
|
||||
@import "../ubuntu.scss";
|
||||
|
||||
// FA CSS classes
|
||||
@import "../node_modules/@fortawesome/fontawesome-free/scss/fontawesome.scss";
|
||||
|
|
|
@ -2,4 +2,5 @@
|
|||
@use "../fontawesome.scss";
|
||||
|
||||
@use "util.css";
|
||||
@use "../ubuntu.scss";
|
||||
@use "main.css";
|
||||
|
|
|
@ -1,22 +1,3 @@
|
|||
|
||||
|
||||
|
||||
|
||||
/*//////////////////////////////////////////////////////////////////
|
||||
[ FONT ]*/
|
||||
|
||||
@font-face {
|
||||
font-family: Ubuntu-Regular;
|
||||
font-display: swap;
|
||||
src: url('../fonts/ubuntu/Ubuntu-Regular.ttf');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Ubuntu-Bold;
|
||||
font-display: swap;
|
||||
src: url('../fonts/ubuntu/Ubuntu-Bold.ttf');
|
||||
}
|
||||
|
||||
/*//////////////////////////////////////////////////////////////////
|
||||
[ RESTYLE TAG ]*/
|
||||
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
/*//////////////////////////////////////////////////////////////////
|
||||
[ FONT ]*/
|
||||
|
||||
@font-face {
|
||||
font-family: Ubuntu-Regular;
|
||||
font-display: swap;
|
||||
src: url('../fonts/ubuntu/Ubuntu-Regular.ttf');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Ubuntu-Bold;
|
||||
font-display: swap;
|
||||
src: url('../fonts/ubuntu/Ubuntu-Bold.ttf');
|
||||
}
|
Loading…
Reference in New Issue