Battleship/index.css

57 lines
806 B
CSS
Raw Normal View History

2022-01-16 10:52:50 +01:00
table,
th,
td {
border: 1px solid white;
border-collapse: collapse;
}
td > div{
color: white;
}
tr,
td{
text-align: center;
height: 100%;
padding: 0.4%;
}
2022-01-16 13:56:53 +01:00
#playfield {
2022-01-16 10:52:50 +01:00
width: 100%;
height: 100%;
}
#localdiv,
#remotediv {
2022-01-16 13:56:53 +01:00
width: 70%;
height: 70%;
float: center;
padding-top: 1%;
padding-bottom: 1%;
}
#localauxdiv,
#remoteauxdiv {
width: 25%;
height: 25%;
2022-01-16 10:52:50 +01:00
float: center;
padding-top: 1%;
padding-bottom: 1%;
2022-01-16 13:56:53 +01:00
padding-left: 1%;
2022-01-16 10:52:50 +01:00
}
#local,
#remote {
width: 100%;
height: 100%;
table-layout: fixed;
object-fit: contain;
}
2022-01-16 13:56:53 +01:00
#localaux,
#remoteaux {
width: 100%;
height: 100%;
table-layout: fixed;
object-fit: contain;
}
2022-01-16 10:52:50 +01:00
#playfield {
display: flex;
2022-01-16 13:56:53 +01:00
flex-wrap: wrap;
}
body{
background-color: black;
2022-01-16 10:52:50 +01:00
}