]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+page-not-found/page-not-found.component.scss
Bidi support
[github/Chocobozzz/PeerTube.git] / client / src / app / +page-not-found / page-not-found.component.scss
CommitLineData
19b7ebfa
RK
1@import '_variables';
2@import '_mixins';
3
767619f6 4.root {
27bc9586
C
5 @include margin-left(auto);
6 @include margin-right(auto);
7
a51bad1a 8 height: 100%;
a51bad1a 9 text-align: center;
191764f3 10 padding-top: 150px;
19b7ebfa
RK
11 display: flex;
12 justify-content: center;
13 flex-direction: column-reverse;
14
15 .box {
27bc9586 16 text-align: start;
19b7ebfa
RK
17 font-size: 120%;
18 padding: 0 15px;
19 }
a51bad1a 20
767619f6 21 img {
27bc9586
C
22 @include margin-left(auto);
23
e8146195
C
24 width: 220px;
25 height: auto;
767619f6
C
26 }
27
19b7ebfa
RK
28 @media screen and (max-width: $mobile-view) {
29 img {
27bc9586 30 @include margin-right(auto);
19b7ebfa
RK
31 }
32 }
33
34 @media screen and (min-width: $mobile-view) {
35 width: 400px;
36 }
37
38 @media screen and (min-width: #{breakpoint(lg)}) {
39 width: 600px;
40 }
41
42 @media screen and (min-width: #{breakpoint(xl)}) {
43 width: 700px;
44 }
45
46 @media screen and (min-width: #{breakpoint(xxl)}) {
47 width: 800px;
767619f6
C
48 }
49
50 @media screen and (max-height: 600px) {
51 padding-top: 50px;
e8146195
C
52
53 img {
54 width: 160px;
55 }
767619f6
C
56 }
57}