-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle_upload.css
87 lines (73 loc) · 1.22 KB
/
style_upload.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
/* Move down content because we have a fixed navbar that is 50px tall */
body {
padding-top: 50px;
padding-bottom: 20px;
}
/* modified by Jisoo */
.form-group {
width: 50%;
}
.col-md-3 {
position: relative;
/*background-color: lightblue;*/
height:300px;
}
.navbar-centered {
position: absolute;
left: 40%;
}
.navbar-centered2 {
position: absolute;
left: 50%;
}
.form-inline {
padding-bottom: 10px;
}
.body-container {
padding-top: 60px;
}
/* added by Jisoo */
.btn-publish{
padding-top: 20px;
padding-bottom: 40px;
}
.all-forms{
padding-left: 15px;
}
/* layout.css Style */
.upload-drop-zone {
height: 200px;
border-width: 2px;
margin-bottom: 20px;
}
/* skin.css Style*/
.upload-drop-zone {
color: #ccc;
border-style: dashed;
border-color: #ccc;
line-height: 200px;
text-align: center
}
.upload-drop-zone.drop {
color: #222;
border-color: #222;
}
.btn-file {
position: relative;
overflow: hidden;
}
.btn-file input[type=file] {
position: absolute;
top: 0;
right: 0;
min-width: 100%;
min-height: 100%;
font-size: 100px;
text-align: right;
filter: alpha(opacity=0);
opacity: 0;
outline: none;
background: white;
cursor: inherit;
display: block;
}