-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
51 lines (46 loc) · 813 Bytes
/
Copy pathapp.css
File metadata and controls
51 lines (46 loc) · 813 Bytes
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
.app{
text-align: center;
}
body{
width: 100%;
height: 100%;
justify-content: center;
text-align: center;
}
.row{
display: flex;
width: max-content;
height: 100%;
/* border: 2px solid black; */
padding: 2px;
justify-items: center;
object-fit: cover;
}
.board{
display: block;
width: max-content;
height: 100%;
border: 2px solid black;
border-radius: 10px;
text-align: center;
}
.stateProp1{
background-color: white;
}
.stateProp2{
background-color: greenyellow;
}
.stateProp3{
background-color: green;
}
.minibox{
object-fit: contain;
font-size:15px;
padding-left: 15px;
padding-top:0px ;
padding-bottom: 0px;
margin: 2px;
width: 1px;
border: 1px solid black;
border-radius: 5px;
}