-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.css
132 lines (132 loc) · 2.23 KB
/
style.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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
body {
background: #ccc;
font-family: helvetica;
color: #555;
margin: 0;
padding: 5px;
}
#container {
display: block;
margin: auto;
}
#header {
height: 100px;
margin: 0;
}
#options, #title {
float: left;
}
#options {
padding: 25px;
}
#options a {
cursor: pointer;
height: 100%;
display: inline-block;
background: #444;
padding: 15px 20px;
margin-right: 10px;
color: white;
border-radius: 5px;
}
#wrapper {
float: left;
position: relative;
display: block;
width: 1552px;
height: 650px;
margin: 0 5px;
background-repeat: no-repeat;
/*
background: url('assets/stages/Desolace.png') top center #fff;
*/
}
#myCanvas {
/*border: 2px solid red;
background: rgba(0, 0, 0, 0.5);
left: 0; top: 30px;
margin: 0 auto;
*/
display: block;
position: relative;
}
#menu {
/*
position: fixed;
top: 0; left: 0; bottom: 0;
overflow-y: scroll;
*/
float: left;
margin: 0;
background: gold;
border: 1px solid goldenrod;
z-index: 10;
text-transform: uppercase;
font-size: 12px;
height: 599px;
padding-bottom: 5px;
}
#menu ol, #menu ul {
margin: 0;
padding: 5px;
list-style: none;
}
#menu ul {
overflow-y: scroll;
list-style: none;
height: 550px;
}
#menu li {
padding: 2px;
font-weight: bold;
z-index: 99;
}
#menu ol li {
margin: 5px 0;
padding-left: 20px;
text-indent: -15px;
}
#menu ol li br {
line-height: 20px;
}
#menu ol li:hover, #menu span:hover {
color: white;
cursor: pointer;
}
#menu select {
border: 0;
text-transform: uppercase;
text-align: center;
padding: 5px;
margin: 0;
width: 100%;
background: goldenrod;
color: gold;
font-size: 2em;
font-weight: bold;
}
.plus, .minus, .turn, .special, .bubble, .resetChar, .mirror, .pose, .declutter {
padding: 3px 7px;
background: goldenrod;
border-radius: 5px;
}
.special {
margin-left: 3px;
background: orangered;
color: navajowhite;
}
.bubble {
margin-left: 3px;
background: deepskyblue;
color: navajowhite;
}
.hidden {
visibility: hidden;
height: 0;
}
h1 {
margin-bottom: 0;
}
p {
margin-top: 0;
}