diff options
Diffstat (limited to 'client/stylesheets/index.scss')
-rw-r--r-- | client/stylesheets/index.scss | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/client/stylesheets/index.scss b/client/stylesheets/index.scss new file mode 100644 index 000000000..d13dcfa90 --- /dev/null +++ b/client/stylesheets/index.scss | |||
@@ -0,0 +1,88 @@ | |||
1 | .span_action { | ||
2 | margin: 5px; | ||
3 | cursor: pointer; | ||
4 | } | ||
5 | |||
6 | header div { | ||
7 | height: 50px; | ||
8 | line-height: 25px; | ||
9 | margin-bottom: 50px; | ||
10 | } | ||
11 | |||
12 | menu { | ||
13 | margin-right: 20px; | ||
14 | border-right: 1px solid rgba(0, 0, 0, 0.2); | ||
15 | } | ||
16 | |||
17 | menu .panel_button { | ||
18 | margin: 8px; | ||
19 | cursor: pointer; | ||
20 | transition: margin 0.2s; | ||
21 | } | ||
22 | |||
23 | menu .panel_button:hover { | ||
24 | margin-left: 15px; | ||
25 | } | ||
26 | |||
27 | menu .glyphicon { | ||
28 | margin: 5px; | ||
29 | } | ||
30 | |||
31 | #ajax_load { | ||
32 | min-height: 500px; | ||
33 | } | ||
34 | |||
35 | .loading { | ||
36 | display: inline-block; | ||
37 | margin-top: 100px; | ||
38 | } | ||
39 | |||
40 | .video { | ||
41 | margin-bottom: 10px; | ||
42 | transition: margin 0.5s ease; | ||
43 | } | ||
44 | |||
45 | .video:hover { | ||
46 | margin-left: 5px; | ||
47 | } | ||
48 | |||
49 | .video_name { | ||
50 | cursor: pointer; | ||
51 | margin-right: 5px; | ||
52 | } | ||
53 | |||
54 | .video_pod_url { | ||
55 | font-size: small; | ||
56 | color: rgba(0, 0, 0, 0.5); | ||
57 | } | ||
58 | |||
59 | .video_description { | ||
60 | font-size: small; | ||
61 | font-style: italic; | ||
62 | margin-left: 7px; | ||
63 | } | ||
64 | |||
65 | .btn-file { | ||
66 | position: relative; | ||
67 | overflow: hidden; | ||
68 | } | ||
69 | .btn-file input[type=file] { | ||
70 | position: absolute; | ||
71 | top: 0; | ||
72 | right: 0; | ||
73 | min-width: 100%; | ||
74 | min-height: 100%; | ||
75 | font-size: 100px; | ||
76 | text-align: right; | ||
77 | filter: alpha(opacity=0); | ||
78 | opacity: 0; | ||
79 | outline: none; | ||
80 | background: white; | ||
81 | cursor: inherit; | ||
82 | display: block; | ||
83 | } | ||
84 | |||
85 | .name_file { | ||
86 | display: inline-block; | ||
87 | margin-left: 10px; | ||
88 | } \ No newline at end of file | ||