mirror of
https://github.com/FranP-code/Hangman-game-with-React.git
synced 2025-10-13 00:42:32 +00:00
28 lines
428 B
SCSS
28 lines
428 B
SCSS
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
@mixin titleFont() {
|
|
|
|
font-family: 'Raleway', sans-serif;
|
|
font-weight: bold;
|
|
}
|
|
|
|
@mixin titleNormalize() {
|
|
user-select: none;
|
|
margin: 0;
|
|
}
|
|
|
|
@mixin bodyFont() {
|
|
|
|
font-family: 'Rambla', sans-serif;
|
|
font-weight: 400;
|
|
}
|
|
|
|
@import 'header';
|
|
@import 'game-container';
|
|
@import 'defeat-victory';
|
|
@import 'loading';
|
|
@import 'letters-registered';
|
|
@import 'letter-input' |