-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstyles.css
More file actions
58 lines (58 loc) · 1.15 KB
/
Copy pathstyles.css
File metadata and controls
58 lines (58 loc) · 1.15 KB
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
body, div, textarea, button {
position:relative;
margin: 0;
padding: 0;
vertical-align: baseline;
font: inherit;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
-ms-box-sizing:border-box;
box-sizing:border-box;
-webkit-font-smoothing:antialiased;
font-smoothing:antialiased
}
body {
font-family: Tahoma, Arial, sans-serif;
width: 100%;
height: 100%;
padding: 4%;
font-size: 13px;
}
h1 {
margin: 20px 0;
color: #333;
font-size: 22px;
font-weight: bold;
text-align: center;
}
#drop_area {
width: 100%;
height: 300px;
max-height: 200px;
border: 4px dashed #FFB2B2;
margin-bottom: 30px;
text-align: center;
cursor: pointer;
-webkit-transition: all linear 0.2s;
-moz-transition: all linear 0.2s;
-o-transition: all linear 0.2s;
-ms-transition: all linear 0.2s;
transition: all linear 0.2s;
}
#drop_area:hover {
border: 4px dashed red;
}
#file {
display: none;
}
button {
margin-bottom: 10px;
}
textarea {
width: 99%;
padding: 4px;
min-height: 200px;
margin-bottom: 30px;
font-size: 90%;
resize: vertical;
}