caa-game/css/index.css

33 lines
452 B
CSS
Raw Normal View History

2020-03-02 22:06:16 +01:00
html, body {
2020-03-15 17:23:01 +01:00
margin: 0;
height: 100vh;
width: 100vw;
background: lightskyblue;
font-family: sans-serif;
2020-03-04 10:20:00 +01:00
}
2020-03-15 17:23:01 +01:00
h1 {
text-align: center;
2020-03-04 10:20:00 +01:00
}
2020-03-15 17:23:01 +01:00
ul {
list-style-type: none;
text-align: center;
padding: 0;
display: grid;
2020-03-04 10:20:00 +01:00
}
2020-03-15 17:23:01 +01:00
li {
width: 25vw;
padding: 10px 20px;
margin: 0 auto;
margin-top: 20px;
background: #9ea399;
border-radius: 5px;
border: 2px solid #1c1914;
cursor: pointer;
2020-03-04 10:20:00 +01:00
}
2020-03-15 17:23:01 +01:00
li:hover {
box-shadow: 2px 2px #1c1914;
2020-03-02 22:06:16 +01:00
}