-
Notifications
You must be signed in to change notification settings - Fork 55
/
style.css
97 lines (97 loc) · 1.49 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
@charset "utf-8";
img {
border-width: 1px;
border-color: black;
border-style: solid;
}
details>summary {
cursor: pointer;
}
details>summary:hover {
background-color: #bbb;
}
h1 {
text-align: center;
}
dt {
font-weight: bold;
background-color: rgba(0,0,0,0.2);
}
.splitContainer {
display: grid;
grid-template-columns: 1fr 2fr;
}
.picker
{
padding: 10px;
padding-top: 0;
background-color: rgba(200,200,200,0.5);
font-size: 0.9em;
}
.openbtn
{
font-weight: bold;
color: white;
border: 1px solid rgb(9, 74, 178);
height: 24px;
padding-left: 4px;
padding-right: 4px;
padding-bottom: 2px;
text-align: center;
cursor: pointer;
background-color: rgb(9, 74, 178);
}
.openbtn::before {
content: "";
display: inline-block;
width: 1em;
height: 1em;
background-image: url("images/cloud-white-18dp.svg");
background-size: contain;
}
.mask-list
{
width: 100%;
height: 300px;
margin-bottom: 5px;
}
.mask-bar {
display: grid;
grid-template-columns: 100px auto 30px 30px;
gap: 3px;
}
.mask-add,.mask-remove
{
margin: 0;
}
.tip
{
font-style: italic;
color: #666;
}
.output
{
padding: 10px;
padding-top: 0;
background-color: rgba(253,224,180,0.5);
}
.outinfo
{
height: 25px;
line-height: 25px;
background-color:lightblue;
margin-bottom: 10px;
}
.outcontent
{
box-sizing: border-box;
width: 100%;
resize: vertical;
height: 340px;
min-height:300px;
}
.copyright
{
width: 100%;
text-align: center;
}