-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.css
81 lines (70 loc) · 1.28 KB
/
index.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
/* Variables */
:root {
--background-color: #f5f5f4;
--text-color: #333;
--window-border-radius: 6px;
--font-size: 14px;
}
/* The arrow at the top of the window */
/* .header-arrow {
position: absolute;
top: 5px;
left: 50%;
margin-left: -10px;
height: 20px;
width: 20px;
transform: rotate(45deg);
background-color: #e8e6e8;
} */
/* .window {
position: absolute;
top: 10px;
} */
/* .toolbar {
box-shadow: none;
} */
/* .window, .toolbar-header {
border-top-left-radius: var(--window-border-radius);
border-top-right-radius: var(--window-border-radius);
} */
.window-content {
background-color: var(--background-color);
}
.title {
padding-top: 8px;
padding-left: 10px;
/* font-size: calc(var(--font-size) - 4px); */
float: left;
}
.title a {
color: var(--text-color);
}
#drag-file-container {
margin: 10px;
width: 100%;
}
#drag-file {
display: flex;
flex-direction: column;
align-items: center !important;
justify-content: center !important;
text-align: center;
background-color: #fafafa;
color: #aaa;
width:100%;
height:90%;
border: 3px dashed #aaa;
font-size: 2em;
padding: 10px;
border-radius: 5px;
}
#help_section {
display: none;
}
#drag-file p {
margin: 0;
}
#convert_again_button {
width: 100%;
margin-top: 10px;
}