-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
65 lines (54 loc) · 864 Bytes
/
main.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
html {
height: 100%;
}
body {
font-family: 'Segoe UI', sans-serif;
height: 100%;
display: flex;
flex-direction: column;
}
.info {
margin: 20px;
flex: 1 1 auto;
}
#drop_zone {
margin: 20px;
height: 20%;
display: flex;
flex: 1 1 30%;
align-items: center;
justify-content: center;
border: 2px dashed #bbb;
border-radius: 5px;
padding: 25px;
text-align: center;
font: 40px bold;
font-family: 'Segoe UI';
color: #bbb;
}
#drop_zone.dragging {
border: 2px dashed #47d0fd;
color: #47d0fd;
}
p {
max-width: 1000px;
}
#log {
flex: 1 1 60%;
overflow: auto;
border: 1px solid #bbb;
border-radius: 3px;
margin: 6px;
padding: 2px;
}
.logFailure {
color: red;
}
.logWarning {
color: #C2A702;
}
.logTitle {
}
.logSuccess {
color: green;
}