Hangman and Current score done

This commit is contained in:
2021-10-13 15:46:35 -03:00
parent 9c09a32ba7
commit 37b8c821d1
20 changed files with 2286 additions and 0 deletions

5
public/sass/_app.scss Normal file
View File

@@ -0,0 +1,5 @@
@import 'hangman';
.app {
}

View File

@@ -0,0 +1,5 @@
.hangman {
img {
width: 20vw;
}
}

25
public/sass/_header.scss Normal file
View File

@@ -0,0 +1,25 @@
header {
border-bottom: 1px solid rgb(200, 200, 200);
height: 10vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
h1 {
@include titleFont();
@include titleNormalize();
}
h2 {
@include titleFont();
@include titleNormalize();
color: rgb(72, 166, 253);
margin-top: 0.5vh;
cursor: pointer;
}
}

24
public/sass/index.scss Normal file
View File

@@ -0,0 +1,24 @@
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: 'Raleway', sans-serif;
font-weight: 400;
}
@import 'header';
@import 'app';