blob: 11ee3297ea5d584ce105980ba23d338bcac3f283 (
plain) (
blame)
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
|
.btn-file {
position: relative;
overflow: hidden;
display: block;
}
.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;
}
.name_file {
display: inline-block;
margin-left: 10px;
}
.form-group {
margin-bottom: 10px;
}
div.tags {
height: 40px;
font-size: 20px;
margin-top: 20px;
.tag {
margin-right: 10px;
.remove {
cursor: pointer;
}
}
}
div.file-to-upload {
height: 40px;
.glyphicon-remove {
cursor: pointer;
}
}
.little-information {
font-size: 0.8em;
font-style: italic;
}
|