-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.scss
128 lines (123 loc) · 1.94 KB
/
style.scss
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
#my_canvas {
border: 3px solid black;
margin: 0px;
position: relative;
top: 130px;
left: 190px;
}
.hidden {
display: none !important;
}
.options {
position: fixed;
top: -8px;
left: 8px;
z-index: 1;
.toggle {
text-decoration: underline;
color: steelblue;
cursor: pointer;
padding: 5px;
width: 55px;
}
.characters {
padding:0px;
li {
padding: 0px;
.character {
margin-right: 1px;
opacity: 0.5;
border: none;
}
.first {
background: green;
}
.second {
background: black;
}
.third {
background: red;
}
.fourth {
background: purple;
}
.active {
opacity: 1;
}
}
}
.config.collapsed {
li {
display:none;
}
li:first-child {
display:inline-flex;
}
li:nth-last-child(-n+2) {
display:inline-flex;
}
}
.config {
border: 1px solid black;
padding: 5px;
background: white;
margin-bottom: 5px;
width: 175px;
li{
display: block;
list-style-type: none;
padding: 5px;
border-bottom: 1px dotted grey;
input {
width: 40px;
padding-left: 2px;
margin-left: -5px;
}
input.submit {
width: 70px;
}
}
li:last-child {
border: none;
}
li:first-child {
display:inline-flex;
}
}
span.green{
color: green;
font-weight: bold;
}
span.red{
color: red;
font-weight: bold;
}
.info {
border: 1px solid green;
position: fixed;
padding: 5px;
height: 175px;
width: 175px;
background: white;
ul {
margin: 0px;
padding: 0px;
li {
display: block;
padding-left: 2px;
}
}
}
}
.character_info {
.hidden {
display: none !important
}
border: 1px solid grey;
position: fixed;
left: 197px;
}
body {
width: 4000px;
height: 4000px;
}