-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
81 lines (69 loc) · 1.29 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
html {
height: 100%;
}
body {
background-image: linear-gradient( 135deg, #2298DE 10%, #00A500 100%);
display: flex;
justify-content: center;
align-items: center;
height: 100%;
margin: 0px;
}
body .drop-here {
border: 1vw dashed white;
padding: 2vw;
color: white;
font-size: 4vw;
text-align: center;
}
body.hover .drop-here {
text-shadow: 5px 5px 10px black;
}
body.hover * {
/* required for dragleave */
pointer-events: none;
}
body .status {
text-align: center;
font-size: 18px;
margin-top: 15px;
}
button {
display: inline-block;
outline: none;
cursor: pointer;
border: 1px solid #DDD;
background-color: #FFF;
border-radius: 12px;
padding: 10px;
line-height: 26px;
font-weight: bold;
font-size: 14px;
color: #1E2235;
}
button:hover {
background-color: #EEE;
}
body .status button .imported {
font-weight: normal;
}
body .status button.disabled {
opacity: 0.5;
cursor: not-allowed;
}
body .status button.disabled:hover {
background-color: #FFF;
}
button.help {
position: fixed;
top: 5px;
right: 5px;
padding: 0px 10px;
font-size: 12px;
border-radius: 8px;
}
button.help::before {
content: '?';
margin-right: 5px;
font-weight: bolder;
}