-
Notifications
You must be signed in to change notification settings - Fork 371
Expand file tree
/
Copy pathbasic.css
More file actions
94 lines (77 loc) · 1.07 KB
/
basic.css
File metadata and controls
94 lines (77 loc) · 1.07 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
font-family: 'Helvetica Neue', 'Helvetica', 'Arial', 'sans-serif';
font-weight: 400;
font-size: 16px;
color: #333;
}
.center-text {
text-align: center;
}
main {
margin-top: 20px;
padding: 20px;
}
img.logo {
display: block;
margin: 0 auto;
max-width: 100%;
margin-bottom: 30px;
}
h2 {
font-size: 2em;
font-weight: 100;
}
footer {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 20px;
}
footer p {
font-weight: 300;
font-size: 1.0em;
}
a {
color: green;
text-decoration: none;
}
a:hover,
a:focus {
color: green;
}
tfoot input {
width: 100%;
}
.ui-autocomplete {
max-height: 100px;
overflow-y: auto;
/* prevent horizontal scrollbar */
overflow-x: hidden;
}
.progress-strip {
border-radius: 10px;
padding: 5px;
width: 10px;
height: 20px;
}
.progress-strip:hover {
opacity:0.6;
}
.progress-ok {
background: green;
}
.progress-none {
background: gray;
}
.progress-failed {
background: red;
}
.videoPreview {
cursor: pointer;
}