parent
0943889349
commit
e70f1a73dc
@ -0,0 +1,23 @@ |
|||||||
|
{ |
||||||
|
"world": [ |
||||||
|
" ", |
||||||
|
" f ", |
||||||
|
" fw w wf ", |
||||||
|
" ", |
||||||
|
" ", |
||||||
|
" ", |
||||||
|
" ", |
||||||
|
" ", |
||||||
|
" ", |
||||||
|
" ", |
||||||
|
" w ", |
||||||
|
" f " |
||||||
|
], |
||||||
|
"snake": [ |
||||||
|
[6,6], |
||||||
|
[6,7], |
||||||
|
[6,8], |
||||||
|
[6,9] |
||||||
|
], |
||||||
|
"delay": 100 |
||||||
|
} |
@ -1,16 +1,32 @@ |
|||||||
nav { |
nav { |
||||||
|
flex: 1; |
||||||
font-size: 1.6rem; |
font-size: 1.6rem; |
||||||
display: flex; |
display: flex; |
||||||
|
justify-content: space-evenly; |
||||||
|
align-self: center; |
||||||
|
|
||||||
section { |
section { |
||||||
flex: 1; |
flex: 1; |
||||||
|
max-width: 50vh; |
||||||
|
margin: 2rem; |
||||||
} |
} |
||||||
|
|
||||||
|
p { |
||||||
|
margin-bottom: 1rem; |
||||||
|
} |
||||||
|
|
||||||
ul { |
ul { |
||||||
padding-left: 2rem; |
padding-left: 2rem; |
||||||
} |
} |
||||||
|
|
||||||
li { |
li { |
||||||
list-style-type: disc; |
list-style-type: disc; |
||||||
|
|
||||||
|
* { |
||||||
|
display: block; |
||||||
|
} |
||||||
|
|
||||||
|
margin: .5rem; |
||||||
} |
} |
||||||
|
|
||||||
} |
} |
||||||
|
@ -0,0 +1,29 @@ |
|||||||
|
@keyframes popupAppear { |
||||||
|
0% { |
||||||
|
background: transparent; |
||||||
|
} |
||||||
|
100% { |
||||||
|
background: black; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
.popup { |
||||||
|
animation: popupAppear 1s linear no-repeat; |
||||||
|
|
||||||
|
position: absolute; |
||||||
|
top: 0; |
||||||
|
left: 0; |
||||||
|
height: 100%; |
||||||
|
width: 100%; |
||||||
|
|
||||||
|
.content { |
||||||
|
border-radius: 2rem; |
||||||
|
background: @accentbg; |
||||||
|
text-align: center; |
||||||
|
|
||||||
|
postion: absolute; |
||||||
|
top: 50%; |
||||||
|
left: 50%; |
||||||
|
transform: translate(-50%, -50%); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue