aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/stylesheets/index.scss
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2016-03-07 14:48:46 +0100
committerChocobozzz <florian.bigard@gmail.com>2016-03-07 14:48:46 +0100
commit6f4e252246c715a1dafc1e236c8074b08cdd12a3 (patch)
treeafa187e6b1c192e315156499f01f1d7e040977e0 /client/stylesheets/index.scss
parentb9a3e09ad5a7673f64556d1dba122ed4c4fac980 (diff)
downloadPeerTube-6f4e252246c715a1dafc1e236c8074b08cdd12a3.tar.gz
PeerTube-6f4e252246c715a1dafc1e236c8074b08cdd12a3.tar.zst
PeerTube-6f4e252246c715a1dafc1e236c8074b08cdd12a3.zip
Prepare Angular routes
Diffstat (limited to 'client/stylesheets/index.scss')
-rw-r--r--client/stylesheets/index.scss88
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
6header div {
7 height: 50px;
8 line-height: 25px;
9 margin-bottom: 50px;
10}
11
12menu {
13 margin-right: 20px;
14 border-right: 1px solid rgba(0, 0, 0, 0.2);
15}
16
17menu .panel_button {
18 margin: 8px;
19 cursor: pointer;
20 transition: margin 0.2s;
21}
22
23menu .panel_button:hover {
24 margin-left: 15px;
25}
26
27menu .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