1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
Snake/sources/css/style.css

44 lines
838 B
CSS
Raw Normal View History

2021-03-11 09:39:52 +01:00
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
body{
2021-03-18 10:29:12 +01:00
height: 100vh;
2021-03-11 09:39:52 +01:00
width: 100%;
margin: 0;
padding: 0;
background-image: url("../images/yargon-kerman-webp-net-gifmaker-39.gif");
background-repeat: no-repeat;
2021-03-18 10:29:12 +01:00
background-size: cover;
backdrop-filter: blur(4px);
2021-03-11 09:39:52 +01:00
}
h1{
font-family: 'Press Start 2P', cursive;
text-align: center;
color: yellow;
2021-03-18 10:29:12 +01:00
margin: 0;
}
.menu>div{
background-color: black;
}
.menu button{
display: block;
text-align: center;
background-color: transparent;
border: 3px double #FF4294;
margin-bottom: 10px;
margin-top: 10px;
padding: 10px;
font-size: 20px;
color: #FF4294;
2021-03-11 09:39:52 +01:00
}
2021-03-18 10:29:12 +01:00
#canvas {
height: 100%;
width: 100%;
right: 0;
top: 0;
position: fixed;
background: white;
}