aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/stylesheets/index.css
diff options
context:
space:
mode:
Diffstat (limited to 'public/stylesheets/index.css')
-rw-r--r--public/stylesheets/index.css122
1 files changed, 122 insertions, 0 deletions
diff --git a/public/stylesheets/index.css b/public/stylesheets/index.css
new file mode 100644
index 000000000..3b1b59a46
--- /dev/null
+++ b/public/stylesheets/index.css
@@ -0,0 +1,122 @@
1body {
2 padding: 20px;
3}
4
5.span_action {
6 margin: 5px;
7 cursor: pointer;
8}
9
10
11
12header div {
13 height: 50px;
14 line-height: 25px;
15 margin-bottom: 50px;
16}
17
18#search_video {
19 margin: 0 30px 0 30px;
20}
21
22
23
24menu {
25 margin-right: 20px;
26 border-right: 1px solid rgba(0, 0, 0, 0.2);
27}
28
29menu .panel_button {
30 margin: 8px;
31 cursor: pointer;
32 transition: margin 0.2s;
33}
34
35menu .panel_button:hover {
36 margin-left: 15px;
37}
38
39menu .glyphicon {
40 margin: 5px;
41}
42
43
44
45#ajax_load {
46 min-height: 500px;
47}
48
49.loading {
50 display: inline-block;
51 margin-top: 100px;
52}
53
54.video {
55 margin-bottom: 10px;
56 transition: margin 0.5s ease;
57}
58
59.video:hover {
60 margin-left: 5px;
61}
62
63.video_name {
64 cursor: pointer;
65 margin-right: 5px;
66}
67
68.video_pod_url {
69 font-size: small;
70 color: rgba(0, 0, 0, 0.5);
71}
72
73.video_description {
74 font-size: small;
75 font-style: italic;
76 margin-left: 7px;
77}
78
79
80
81form {
82 padding: 1px;
83 margin-top: 10px;
84}
85
86form div {
87 margin-bottom: 15px !important;
88}
89
90.btn-file {
91 position: relative;
92 overflow: hidden;
93}
94.btn-file input[type=file] {
95 position: absolute;
96 top: 0;
97 right: 0;
98 min-width: 100%;
99 min-height: 100%;
100 font-size: 100px;
101 text-align: right;
102 filter: alpha(opacity=0);
103 opacity: 0;
104 outline: none;
105 background: white;
106 cursor: inherit;
107 display: block;
108}
109
110.name_file {
111 display: inline-block;
112 margin-left: 10px;
113}
114
115
116footer {
117 border-top: 1px solid rgba(0, 0, 0, 0.2);
118 padding-top: 10px;
119 padding-top: 10px;
120 text-align: center;
121 font-size: small;
122}