blob: 881f3ff318fa4f3e8ab94930ec313f3adf7fe3bb (
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
|
@import '_variables';
@import '_mixins';
.main-row {
min-height: calc(100vh - #{$header-height} - #{$footer-height} - #{$footer-margin});
}
.sub-header-container {
margin-top: $header-height;
background-color: var(--mainBackgroundColor);
}
.header {
height: $header-height;
position: fixed;
top: 0;
width: 100%;
background-color: var(--mainBackgroundColor);
z-index: 1000;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
display: flex;
.top-left-block {
z-index: 1001;
height: $header-height;
display: flex;
align-items: center;
flex: 1;
min-width: 0;
.icon {
@include icon(24px);
&.icon-menu {
background-color: var(--mainForegroundColor);
mask-image: url('../assets/images/header/menu.svg');
margin: 0 18px 0 20px;
}
}
#peertube-title {
@include disable-default-a-behaviour;
font-size: 20px;
font-weight: $font-bold;
color: inherit !important;
display: flex;
align-items: center;
overflow: hidden;
.instance-name {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 100%;
}
.icon.icon-logo {
display: inline-block;
background: url('../assets/images/logo.svg') no-repeat;
width: 23px;
height: 24px;
}
}
@media screen and (max-width: 500px) {
width: 70px;
#peertube-title {
display: none;
}
}
@media screen and (max-width: 350px) {
flex: auto;
}
}
.header-right {
height: $header-height;
display: flex;
align-items: center;
justify-content: flex-end;
white-space: nowrap;
}
}
footer {
padding: 10px 0;
font-size: 11px;
margin-top: $footer-margin;
height: $footer-height;
justify-content: center;
}
|