-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterface.css
More file actions
136 lines (121 loc) · 2.49 KB
/
interface.css
File metadata and controls
136 lines (121 loc) · 2.49 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}
.header {
background-color: rgb(150, 150, 150);
}
.achievement > img {
margin: 10px 0px 0px 10px;
}
.main_resource {
font-weight: bold;
padding: 2px 5px;
margin: 2px 5px;
border: solid 1px;
display: inline-block;
}
.column {
float: left;
width: 300px;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
#canvas {
cursor: pointer;
}
.button {
cursor: pointer;
background-color: rgb(140, 140, 140);
border: none;
color: white;
padding: 2px 5px;
margin: 0px 5px;
text-align: center;
text-decoration: none;
display: inline-block;
}
.hidden {
visibility: hidden;
display: none;
}
.disabled {
background-color: rgb(240, 240, 240);
color: black;
text-decoration: line-through;
}
.statsbox {
float: left;
width: 300px;
padding: 5px 5px;
/* border: 1px solid #888; */
}
/* modal window */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 100px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
.modal-content {
background-color: #fefefe;
margin: auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
}
/* context menu */
#ctxMenu{
display:none;
z-index:100;
}
menu {
position:absolute;
display:block;
left:0px;
top:0px;
height:20px;
width:20px;
padding:0;
margin:0;
border:1px solid;
background-color:white;
font-weight:normal;
white-space:nowrap;
}
menu:hover{
background-color:#eef;
font-weight:bold;
}
menu:hover > menu{
display:block;
}
menu > menu{
display:none;
position:relative;
top:-20px;
left:100%;
width:155px;
}
menu[title]:before{
content:attr(title);
}
menu:not([title]):before{
content:"\2630";
}