Footer and credits page done

This commit is contained in:
2021-10-25 22:40:56 -03:00
parent 6c1b02fde9
commit df03437d5e
14 changed files with 206 additions and 15 deletions

View File

@@ -30,7 +30,7 @@
height: 10vh;
width: 50vw;
font-family: Arial, Helvetica, sans-serif;
font-family: Helvetica, sans-serif;
font-size: 22pt;
border: none;

View File

@@ -0,0 +1,4 @@
.credits {
@include bodyFont();
}

View File

@@ -1,5 +1,5 @@
.defeat, .victory {
font-family: Arial, Helvetica, sans-serif;
font-family: Helvetica, sans-serif;
position: absolute;
left: 0;
top: 0;

15
public/sass/_footer.scss Normal file
View File

@@ -0,0 +1,15 @@
.made-with-love a {
color: #ff8787
}
.made-with-love {
color:rgb(185, 185, 185);
margin-top: auto;
width: 100%;
padding-top: 5vh;
padding-bottom: 5vh;
padding-left: 3vw;
box-sizing: border-box;
}

View File

@@ -1,6 +1,6 @@
.form-container {
font-family: Arial, Helvetica, sans-serif;
font-family: Helvetica, sans-serif;
@import './control-panel/message';

View File

@@ -30,7 +30,7 @@
.counter {
font-size: 40pt;
font-family:Arial, Helvetica, sans-serif;
font-family: Helvetica, sans-serif;
margin-left: 3vw;
}

View File

@@ -32,7 +32,7 @@
resize: none;
outline: none;
font-family: Arial, Helvetica, sans-serif;
font-family: Helvetica, sans-serif;
}
input[type="submit"] {
@@ -59,7 +59,7 @@
input[type="text"] {
height: 5vh;
font-family: Arial, Helvetica, sans-serif;
font-family: Helvetica, sans-serif;
font-size: 1.2vw;
outline: none;

View File

@@ -31,4 +31,6 @@ html, body {
@import './control-panel/control-panel';
@import './control-panelDemo/demo-message';
@import './control-panelDemo/admin-header-demo.scss';
@import './info-account/info-account';
@import './info-account/info-account';
@import 'footer';
@import 'credits';