-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
149 lines (126 loc) · 2.89 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
body {
text-align: center;
font-family: "helvetica", Arial, sans-serif;
font-size: 25px;
}
h1 {
margin-top: 0;
width: auto;
text-align: center;
}
input[type=text], input[type=number], input[type=datetime-local], input[type=file], select, textarea{
width: 90%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
resize: vertical;
font-size:25px
}
input[type=radio] {
border: 0px;
width: 42px;
height: 2em;
padding: 5px;
border: 1px solid #ccc;
border-radius: 4px;
resize: vertical;
margin: 5px 0 6px 50px;
}
label {
padding: 12px 12px 12px 0;
display: inline-block;
list-style: none;
}
.button {
margin: 14px 0 0 124px;
background-color: #4CAF50;
color: white;
border: 2px solid #4CAF50;
border-radius: 4px;
padding: 12px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 30px;
margin: 4px 16px;
cursor: pointer;
}
.button:hover {
background-color: #45a049;
}
.col-25 {
float: left;
width: 25%;
margin-top: 6px;
}
.col-75 {
float: left;
width: 75%;
margin-top: 6px;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
.col-25, .col-75, input[type=submit] {
width: 100%;
margin-top: 0;
}
}
abbr, accronym{
border-bottom: 0px !important;
text-decoration: none !important;
}
/*Loading animation */
.loader {
position: absolute;
left: 50%;
top: 50%;
z-index: 1;
width: 120px;
height: 120px;
margin: -76px 0 0 -76px;
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.animate-bottom {
position: relative;
-webkit-animation-name: animatebottom;
-webkit-animation-duration: 1s;
animation-name: animatebottom;
animation-duration: 1s
}
#waitdiv {
text-align: center;
align-content:center;
}
#objectclassificationdiv {
text-align: center;
}
#objectclassificationtext {
color:red;
font-size: auto;
}
@-webkit-keyframes animatebottom {
from { bottom:-100px; opacity:0 }
to { bottom:0px; opacity:1 }
}
@keyframes animatebottom {
from{ bottom:-100px; opacity:0 }
to{ bottom:0; opacity:1 }
}