forked from RoBorg/MOTD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
103 lines (88 loc) · 1.1 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
98
99
100
101
102
103
html
{
position: relative;
min-height: 100%;
}
body
{
margin-bottom: 80px;
}
.footer
{
position: absolute;
bottom: 0;
width: 100%;
height: 60px;
padding-top: 20px;
background-color: #f5f5f5;
}
#results
{
margin-top: 1em;
}
pre
{
overflow: auto;
max-width: 100%;
word-wrap: normal;
line-height: normal;
background-color: #000000;
font-family: Consolas, "Courier New", monospace;
}
textarea
{
width: 100%;
height: 10em;
font-size: 0.5em;
white-space: pre;
word-wrap: normal;
}
.error-message
{
display: none;
}
.has-error .error-message
{
display: block;
}
#drop-target
{
display: none;
position: fixed;
z-index: 2;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.9);
padding: 20px;
}
.drag-over #drop-target
{
display: block;
}
#drop-target-inner
{
border: 6px dashed #dddddd;
width: 100%;
height: 100%;
border-radius: 6px;
display: flex;
}
#drop-target p
{
display: inline-block;
margin: auto;
}
#dropped-file-info
{
display: none;
}
.dropped-files #dropped-file-info
{
display: block;
}
.dropped-files #file-group
{
display: none;
}