-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
67 lines (52 loc) · 856 Bytes
/
styles.css
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
.face{
position: absolute;
border: thin grey solid;
transition: transform 1s;
border-radius: 1vw;
width:7.5%; height:10%; transform-origin: 150% 150%;
}
.cube-area{
width: 100%;
aspect-ratio: 4/3;
transform-style: preserve-3d;
}
.color-Up{
background-color: yellow;
}
.color-Down{
background-color: white;
}
.color-Left{
background-color: blue;
}
.color-Right{
background-color: green;
}
.color-Front{
background-color: red;
}
.color-Back{
background-color: orange;
}
.color-unknown{
background-color: grey;
}
.paint_button{
width:30px;
height: 30px;
}
.selected{
border: 3px solid black;
}
.cubesvg{
max-width: 500px;
max-height: 500px;
}
.size-4{
flex: 0 0 33.33%;
max-width: 0 0 33.33%
}
.size-2{
flex: 0 0 16.66%;
max-width: 0 0 16.66%
}