-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstyle.css
69 lines (68 loc) · 1.25 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
body {
margin: 0px;
padding: 0px;
width: 100%;
font-family: Arial, Helvetica, sans-serif;
color:#666666;
}
#upload-wrapper {
width: 50%;
margin-right: auto;
margin-left: auto;
margin-top: 50px;
background: #F5F5F5;
padding: 50px;
border-radius: 10px;
box-shadow: 1px 1px 3px #AAA;
}
#upload-wrapper h3 {
padding: 0px 0px 10px 0px;
margin: 0px 0px 20px 0px;
margin-top: -30px;
border-bottom: 1px dotted #DDD;
}
#upload-wrapper input[type=file] {
border: 1px solid #DDD;
padding: 6px;
background: #FFF;
border-radius: 5px;
}
#upload-wrapper #submit-btn {
border: none;
padding: 10px;
background: #61BAE4;
border-radius: 5px;
color: #FFF;
}
#output{
padding: 5px;
font-size: 12px;
}
#output img {
border: 1px solid #DDD;
padding: 5px;
}
/* progress bar style */
#progressbox {
border: 1px solid #92C8DA;
padding: 1px;
position:relative;
width:400px;
border-radius: 3px;
margin: 10px;
display:none;
text-align:left;
}
#progressbar {
height:20px;
border-radius: 3px;
background-color: #77E0FA;
width:1%;
}
#statustxt {
top:3px;
left:50%;
position:absolute;
display:inline-block;
color: #000000;
}