30 lines
458 B
CSS
30 lines
458 B
CSS
|
|
||
|
.grid-container {
|
||
|
display: grid;
|
||
|
gap: 1px;
|
||
|
grid-template-columns: repeat(3, 1fr);
|
||
|
}
|
||
|
|
||
|
.fire_button {
|
||
|
padding: 10px;
|
||
|
background-color: #ccc;
|
||
|
padding: 2%;
|
||
|
margin: 1%;
|
||
|
background-color: gray;
|
||
|
}
|
||
|
|
||
|
.fire_button:hover{
|
||
|
background-color: red;
|
||
|
}
|
||
|
|
||
|
.turret_button{
|
||
|
padding: 10px;
|
||
|
background-color: #ccc;
|
||
|
padding: 2%;
|
||
|
margin: 1%;
|
||
|
background-color: #808080;
|
||
|
}
|
||
|
|
||
|
.turret_button:hover{
|
||
|
background-color: green;
|
||
|
}
|