]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/app.component.scss
Design video update
[github/Chocobozzz/PeerTube.git] / client / src / app / app.component.scss
CommitLineData
67167390
C
1.main-row {
2 min-height: calc(100vh - #{$header-height} - #{$footer-height} - #{$footer-margin});
3}
4
b33f657c
C
5.sub-header-container {
6 margin-top: $header-height;
7}
8
ea9f487b 9.title-menu-left {
67167390 10 position: fixed;
ea9f487b 11 height: calc(100vh - #{$header-height});
67167390 12 padding: 0;
b33f657c 13 width: $menu-width;
ea9f487b 14
67167390
C
15 .title-menu-left-block.menu {
16 height: 100%;
17 }
18}
ea9f487b 19
67167390
C
20.header {
21 height: $header-height;
b33f657c 22 position: fixed;
26c6ee80 23 top: 0;
b33f657c
C
24 width: 100%;
25 background-color: #fff;
26c6ee80 26 z-index: 1000;
b33f657c
C
27 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
28 display: flex;
ea9f487b 29
67167390 30 .top-left-block {
b33f657c
C
31 width: $menu-width;
32 z-index: 1001;
0d7d2ad9 33 height: $header-height;
d7c152a4 34 display: flex;
26c6ee80
C
35 align-items: center;
36
37 .icon {
0727cab0 38 @include icon(22px);
26c6ee80
C
39
40 &.icon-menu {
d2cc03aa 41 background-image: url('../assets/images/header/menu.svg');
26c6ee80 42 margin: 0 18px 0 24px;
67167390
C
43 }
44 }
45
46 #peertube-title {
26c6ee80
C
47 font-size: 20px;
48 font-weight: $font-bold;
49 color: inherit !important;
50 display: flex;
51 align-items: center;
52
53 @include disable-default-a-behaviour;
54
55 .icon.icon-logo {
56 display: inline-block;
d2cc03aa 57 background: url('../assets/images/logo.svg') no-repeat;
0727cab0 58 width: 23px;
b33f657c 59 height: 24px;
ea9f487b
C
60 }
61 }
3eeeb87f
C
62
63 @media screen and (max-width: 500px) {
64 #peertube-title {
65 display: none;
66 }
3eeeb87f 67 }
ea9f487b 68 }
ea9f487b 69
b33f657c 70 .header-right {
b33f657c 71 height: $header-height;
26c6ee80
C
72 display: flex;
73 align-items: center;
b33f657c 74 flex-grow: 1;
26c6ee80 75 justify-content: flex-end;
67167390 76 }
897ec54d
C
77}
78
ea9f487b 79footer {
897ec54d
C
80 border-top: 1px solid $footer-border-color;
81 padding: 10px 0;
ea9f487b 82 text-align: center;
897ec54d 83 font-size: 11px;
efbf0ed7
C
84 margin-top: $footer-margin;
85 height: $footer-height;
ea9f487b 86}