blob: 00c55b6c4ef7465d9c7d58ecd5e9ac3abc740061 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
* {
box-sizing: border-box;
}
table{
margin: 20px auto;
}
.vastus td{
border: 5px solid lime !important;
}
td {
border: 4px solid white !important;
width: 40px !important;
height: 40px !important;
font-weight: bold;
}
.main{
display: flex;
}
.left, .right{
margin: 10px;
width: calc((100vw - (13*40px) - 40px) / 2) !important;
}
|