set PEL design to UI

This commit is contained in:
memeriau
2021-11-23 23:10:30 +01:00
parent acdae94b31
commit 33820f43eb
17 changed files with 109 additions and 39 deletions

6
src/theme/fonts.scss Normal file
View File

@@ -0,0 +1,6 @@
@font-face {
font-family: "Grobold";
src: url("../theme/fonts/GROBOLD.eot?") format("eot"),
url("../theme/fonts/GROBOLD.woff") format("woff"),
url("../theme/fonts/GROBOLD.ttf") format("truetype");
}

BIN
src/theme/fonts/GROBOLD.eot Normal file

Binary file not shown.

BIN
src/theme/fonts/GROBOLD.ttf Normal file

Binary file not shown.

Binary file not shown.

10
src/theme/form.scss Normal file
View File

@@ -0,0 +1,10 @@
@import "./variables";
button {
padding: 5px 20px;
background-color: $color-orange;
border: none;
color: $color-white;
border-radius: 14px;
font-weight: bold;
}

10
src/theme/main.scss Normal file
View File

@@ -0,0 +1,10 @@
@import "./variables";
@import "./fonts";
@import "./reset";
@import "./form";
body {
padding: 0;
font-family: "Helvetica-Light", Helvetica, Arial, sans-serif;
background-color: $color-orange;
}

5
src/theme/mixins.scss Normal file
View File

@@ -0,0 +1,5 @@
@mixin desktop {
@media (min-width: 800px) {
@content;
}
}

7
src/theme/reset.scss Normal file
View File

@@ -0,0 +1,7 @@
body,
h1,
div,
input,
button {
box-sizing: border-box;
}

View File

@@ -1,2 +1,7 @@
$color-dark-gray: #333;
$color-white: #eee;
$color-white: #fff;
$color-orange: #ea4d0a;
$border-large: 4px solid black;
$border-thin: 2px solid black;
$font-pel: "Grobold";