-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (55 loc) · 1.59 KB
/
style.css
File metadata and controls
63 lines (55 loc) · 1.59 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
html,
body {
margin: 0;
overflow: hidden;
height: 100%;
}
/* Scale canvas with resize attribute to full size */
canvas[resize] {
width: 100%;
height: 100%;
}
.toolbar {
display: -ms-grid;
display: grid;
grid-auto-columns: 1fr;
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
grid-row-gap: 16px;
grid-column-gap: 16px;
background: #282923;
}
.grid {
-ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
a.toolbutton {
display: inline-block;
font-family: arial, sans-serif;
font-size: 14px;
color: rgb(205, 216, 228);
text-shadow: 0 -1px rgb(46, 53, 58);
text-decoration: none;
user-select: none;
line-height: 2em;
padding: 1px 1.2em;
outline: none;
border: 1px solid rgba(33, 43, 52, 1);
border-radius: 3px;
background: rgb(81, 92, 102) linear-gradient(rgb(81, 92, 102), rgb(69, 78, 87));
box-shadow: inset 0 1px rgba(101, 114, 126, 1), inset 0 0 1px rgba(140, 150, 170, .8), 0 1px rgb(83, 94, 104), 0 0 1px rgb(86, 96, 106);
}
a.toolbutton:active {
box-shadow: inset 0 1px 3px rgba(0, 10, 20, .5), 0 1px rgb(83, 94, 104), 0 0 1px rgb(86, 96, 106);
}
a.toolbutton:focus:not(:active) {
border: 1px solid rgb(22, 32, 43);
border-bottom: 1px solid rgb(25, 34, 45);
background: rgb(53, 61, 71);
box-shadow: inset 0 1px 3px rgba(0, 10, 20, .5), 0 1px rgb(83, 94, 104), 0 0 1px rgb(86, 96, 106);
pointer-events: none;
}