-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
101 lines (98 loc) · 2.24 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*Style for the upload fieldset*/
.full-upload-container{
width : 50%;
}
/*Style for each of the file's Tbody element*/
.each-file{
width : 100%;
margin : 4px;
}
/*Style for every table row*/
.tr{
width : 100%;
}
/*Style for File Size*/
.file-size{
text-align : center;
}
/*Style for the upload status container*/
.font-container{
text-align : center;
}
/*Style for filename, filesize and upload status container*/
.file-name, .file-size, .font-container{
padding :10px;
}
/*Media query to handle responsiveness*/
@media screen and (max-width : 500px){
.full-upload-container{
width : 90%;
}
}
/*Style for rolling animation while file upload is pending*/
.loading{
height: 1rem;
width: 1rem;
border-radius:50%;
border: solid gold;
border-right:4px solid transparent;
animation-name:rotate;
animation-duration: 0.5s;
animation-iteration-count: infinite;
margin-left : 30%;
}
/*Keyfranes for the animation*/
@keyframes rotate{
0%{
transform:rotate(0);
}
50%{
transform:rotate(180deg);
}
100%{
transform:rotate(360deg);
}
}
/*Styles for the Div responsible for recieving the drag and drop files*/
.select-container{
width : 100%;
text-align : center;
border : dotted 1px blue;
margin-top : 10px;
padding: 50px 0;
cursor : pointer;
border-radius : 5%;
}
/*Div containing the upload inidicator*/
.select-file{
background-color : red;
margin : 0% 90px;
text-transform : uppercase;
background-color : blue;
color : white;
padding : 4px;
font-weight : bolder;
}
/*Style for Delete button*/
.delete-refresh-btn{
background-color : transparent;
border : black solid 1px;
cursor : pointer;
}
/*Hover effect for delete button*/
.delete-refresh-btn:hover{
background-color : white;
border : black solid 1px;
}
/*Style for the container responsible for displaying upload errors*/
.error-display{
color : red;
font-weight : bolder;
margin : 0%;
padding : 0%;
margin-left : 10px;
}
/*Styles for the list of selected files*/
.list-of-selected{
margin-top : 10px;
}