-
Notifications
You must be signed in to change notification settings - Fork 2
/
arrogance.css
64 lines (63 loc) · 1.08 KB
/
arrogance.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
#container {
max-width: 900px;
max-height: 900px;
width: 100%;
height: 100%;
}
#canvas {
max-width: 100%;
max-height: 100%;
width: auto;
height: auto;
}
#canvas:hover:active {
cursor: crosshair;
}
#virtual {
display: none;
}
h1 {
margin: 0.2em 0;
}
.l-box {
padding: 0.5em 0.7em;
}
#tools {
display: grid;
grid-template-columns: 50% 50%;
gap: 4px;
max-width: 350px;
}
.tool-button {
font-size: 0.85em;
text-align: center;
padding: 0.75em 0;
overflow: hidden;
text-overflow: clip;
white-space: nowrap;
}
.pure-button-warning {
background: rgb(223, 117, 20); /* this is an orange */
}
.tool_down { cursor: crosshair; }
input[type="file"] {
/* Truncate text in file input to fit menu */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: 100%;
}
#modal {
display: none;
position: absolute;
z-index: 1;
width: 100%;
height: 100%;
background: #000;
color: #fff;
opacity: 0.8;
top: 0;
left: 0;
text-align: center;
font-size: 5em;
}