blob: 5dbb5e85aa1257a1a834619fd0d495a4cc67077e (
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
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
|
$icon-font-path: "/stylesheets/vendor/fonts/bootstrap/";
@import "../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap";
body {
padding: 20px;
}
.span_action {
margin: 5px;
cursor: pointer;
}
header div {
height: 50px;
line-height: 25px;
margin-bottom: 50px;
}
#search_video {
margin: 0 30px 0 30px;
}
menu {
margin-right: 20px;
border-right: 1px solid rgba(0, 0, 0, 0.2);
}
menu .panel_button {
margin: 8px;
cursor: pointer;
transition: margin 0.2s;
}
menu .panel_button:hover {
margin-left: 15px;
}
menu .glyphicon {
margin: 5px;
}
#ajax_load {
min-height: 500px;
}
.loading {
display: inline-block;
margin-top: 100px;
}
.video {
margin-bottom: 10px;
transition: margin 0.5s ease;
}
.video:hover {
margin-left: 5px;
}
.video_name {
cursor: pointer;
margin-right: 5px;
}
.video_pod_url {
font-size: small;
color: rgba(0, 0, 0, 0.5);
}
.video_description {
font-size: small;
font-style: italic;
margin-left: 7px;
}
form {
padding: 1px;
margin-top: 10px;
}
form div {
margin-bottom: 15px !important;
}
.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;
}
.name_file {
display: inline-block;
margin-left: 10px;
}
footer {
border-top: 1px solid rgba(0, 0, 0, 0.2);
padding-top: 10px;
padding-top: 10px;
text-align: center;
font-size: small;
}
|