-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (112 loc) · 1.86 KB
/
style.css
File metadata and controls
113 lines (112 loc) · 1.86 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
body {
overflow: hidden;
}
#playAreaSVG {
position: absolute;
top: 0px;
left: 0px;
/*on bottom*/
z-index: 0;
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
transform-style: preserve-3d;
}
g.cards_in_hand image {
opacity: .7;
}
.hiddenFeatureGroup {
display: none;
}
/*#viewControls {
position: absolute;
top: 10px;
left: 10px;
max-width: 100px;
}*/
.interfaceIcon {
display: none;
}
#gameControls {
position: absolute;
top: 10px;
left: 10px;
max-width: 400px;
}
#gameControls > *{
padding-top: 10px;
padding-bottom: 10px;
border-bottom: 1px solid #999999;
}
#gameControlsRight {
position: absolute;
top: 10px;
right: 10px;
}
#deckList {
min-width: 200px;
}
#loadDeckBox {
max-width: 300px;
}
#coordDisplay {
position: absolute;
left: 10px;
bottom: 10px;
max-width: 200px;
}
#motionDisplay {
position: absolute;
left: 10px;
bottom: 30px;
max-width: 200px;
}
#motionDisplayCorrected {
position: absolute;
left: 10px;
bottom: 70px;
max-width: 200px;
}
#addDeckHeader {
text-align: right;
}
#deckButtonBox {
display: none;
}
.actionBox {
position: absolute;
/*off screen initially*/
top: -1000px;
left: -1000px;
}
.actionBox div:hover {
background-color: lavender;
}
.actionBox div:active {
background-color: cornflowerblue;
}
.actionBox div.deleteItem:hover {
background-color: red;
}
.links {
cursor: pointer;
text-decoration: underline;
}
.overlayItem {
background-color: #ffffff;
border: 1px solid #d3d3d3;
border-radius: 3px;
/*on top of everything else*/
z-index: 1;
}
.inline {
display: inline-block;
}
.button rect {
fill: rgb(106, 164, 223);
}
.marker rect {
fill: rgb(155, 255, 155);
}
div.mobileCardActions {
display: none;
}