Merge branch 'main' of https://gitlab.com/openKMITL/micromobility-navigation
This commit is contained in:
commit
277694dd21
8 changed files with 695 additions and 0 deletions
BIN
src/fonts/cantarell-bold.woff2
Normal file
BIN
src/fonts/cantarell-bold.woff2
Normal file
Binary file not shown.
BIN
src/fonts/cantarell-regular.woff2
Normal file
BIN
src/fonts/cantarell-regular.woff2
Normal file
Binary file not shown.
15
src/fonts/cantarell.css
Normal file
15
src/fonts/cantarell.css
Normal 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
BIN
src/fonts/roboto-bold.woff2
Normal file
Binary file not shown.
15
src/fonts/roboto.css
Normal file
15
src/fonts/roboto.css
Normal 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
BIN
src/fonts/roboto.woff2
Normal file
Binary file not shown.
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue