-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcube.css
77 lines (75 loc) · 1.33 KB
/
cube.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
68
69
70
71
72
73
74
75
76
77
@font-face {
font-family: "pixel";
src: url(pixel.ttf) format('truetype');
font-weight: normal;
font-style: normal;
}
* {
font-family: "pixel";
font-size: 10px;
font-smooth: never;
-webkit-font-smoothing : none;
}
html, body {
width:100%;
height:100%;
margin:0px;
}
#content {
padding: 10 0 0 10px;
background-color:394046;
}
#control {
color:#ffffff;
padding:10 0 10 0px;
background-color: #394046;
}
#colors, #canvas-wrap,#console {
display: flex;
-webkit-box-direction: normal;
-webkit-box-orient: horizontal;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
-webkit-box-align: center;
align-items: center;
}
#control > div {
padding: 5px;
height: 50px;
}
#color {
width: 50px;
height: 50px;
text-align: center;
vertical-align: middle;
}
#colornum {
background-color: #394046;
padding: 6px 4px 3px 5px;
display: inline-block;
border-radius: 50%;
}
.center-block {
text-align: center;
}
.center-block:before {
content: '';
display: inline-block;
height: 100%;
vertical-align:middle;
}
.center {
display: inline-block;
vertical-align: middle;
}
#pos {
background-color: #f95168;
text-align: center;
vertical-align:middle;
line-height: 50px;
}
#colors {
}
#console {
}