added core Snake code

This commit is contained in:
Nathan DECHER
2020-03-23 20:11:39 +01:00
parent fe2902cdea
commit 7362b4dc5c
17 changed files with 477 additions and 6 deletions
View File
+81
View File
@@ -0,0 +1,81 @@
// full CSS reset
@import 'fullreset.less';
// load the font
@import url('https://fonts.googleapis.com/css?family=Fira+Code:400,700&display=swap');
html {
font-family: 'Fira Code', monospace;
}
// setup REM units
html {
font-size: 62.5% !important;
}
// setup the colors and styles
@accentbg: #fba49b;
@bg: #ffefdf;
@accentfg: #930a16;
@fg: #23090d;
body {
color: @fg;
background: @bg;
}
h1, h2, h3, h4, h5, h6, strong, a {
color: @accentfg;
font-weight: bold;
}
a {
text-decoration: inherit;
}
em {
font-style: italic;
}
header, footer {
background: @accentbg;
img {
border: 4px solid @accentfg;
border-radius: 2px;
}
}
// setup the layout
html, body {
display: flex;
flex-direction: column;
height: 100%;
}
header img, footer img {
float: left;
margin-right: 1rem;
}
header img {
height: 8rem;
}
footer img {
height: 4rem;
}
header, footer, main {
padding: 2rem;
}
main {
flex: 1;
}
h1 {
font-size: 4rem;
}
h2 {
font-size: 2rem;
}
p {
font-size: 1.6rem;
}