mirror of
https://github.com/Paris-est-Ludique/intranet.git
synced 2025-09-12 06:10:11 +02:00
set PEL design to UI
This commit is contained in:
6
src/theme/fonts.scss
Normal file
6
src/theme/fonts.scss
Normal 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
BIN
src/theme/fonts/GROBOLD.eot
Normal file
Binary file not shown.
BIN
src/theme/fonts/GROBOLD.ttf
Normal file
BIN
src/theme/fonts/GROBOLD.ttf
Normal file
Binary file not shown.
BIN
src/theme/fonts/GROBOLD.woff
Normal file
BIN
src/theme/fonts/GROBOLD.woff
Normal file
Binary file not shown.
10
src/theme/form.scss
Normal file
10
src/theme/form.scss
Normal 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
10
src/theme/main.scss
Normal 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
5
src/theme/mixins.scss
Normal file
@@ -0,0 +1,5 @@
|
||||
@mixin desktop {
|
||||
@media (min-width: 800px) {
|
||||
@content;
|
||||
}
|
||||
}
|
7
src/theme/reset.scss
Normal file
7
src/theme/reset.scss
Normal file
@@ -0,0 +1,7 @@
|
||||
body,
|
||||
h1,
|
||||
div,
|
||||
input,
|
||||
button {
|
||||
box-sizing: border-box;
|
||||
}
|
@@ -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";
|
||||
|
Reference in New Issue
Block a user