This commit is contained in:
SRP-mango 2023-08-21 18:14:21 +07:00
commit 277694dd21
8 changed files with 695 additions and 0 deletions

Binary file not shown.

Binary file not shown.

15
src/fonts/cantarell.css Normal file
View file

@ -0,0 +1,15 @@
/* cantarell-regular */
@font-face {
font-family: Cantarell;
font-style: normal;
font-weight: 400;
src: local("Cantarell Regular"), local("Cantarell-Regular"), url(cantarell-regular.woff2) format("woff2");
}
/* cantarell-bold */
@font-face {
font-family: Cantarell;
font-style: normal;
font-weight: 700;
src: local("Cantarell Bold"), local("Cantarell-Bold"), url(cantarell-bold.woff2) format("woff2");
}

BIN
src/fonts/roboto-bold.woff2 Normal file

Binary file not shown.

15
src/fonts/roboto.css Normal file
View file

@ -0,0 +1,15 @@
/* roboto */
@font-face {
font-family: Roboto;
font-style: normal;
font-weight: 400;
src: local("Roboto"), local("Roboto-Regular"), url(roboto.woff2) format("woff2");
}
/* roboto-bold */
@font-face {
font-family: Roboto;
font-style: normal;
font-weight: 700;
src: local("Roboto Bold"), local("Roboto-Bold"), url(roboto-bold.woff2) format("woff2");
}

BIN
src/fonts/roboto.woff2 Normal file

Binary file not shown.

View file

@ -1,3 +1,6 @@
@import url("fonts/cantarell.css");
@import url("fonts/roboto.css");
/* for mobile user */
body{
margin: auto auto auto auto;
@ -7,6 +10,7 @@ body{
}
:root{
background-color: rgb(131, 131, 131);
font-family: Cantarell, sans-serif;
}
/* disable desktop & tablet for now due to unfinalized design */
@media only screen and (min-width: 700px) {