]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+signup/+register/register.component.scss
Fix viewers for lives
[github/Chocobozzz/PeerTube.git] / client / src / app / +signup / +register / register.component.scss
CommitLineData
63c4db6d
C
1@import '_variables';
2@import '_mixins';
421d935d
C
3@import "./_bootstrap-variables";
4
5@import '~bootstrap/scss/functions';
6@import '~bootstrap/scss/variables';
63c4db6d 7
1d5342ab
C
8.alert {
9 font-size: 15px;
10 text-align: center;
11}
12
13.wrapper {
14 display: flex;
15 justify-content: space-between;
16 flex-wrap: wrap;
17
18 & > div {
19 margin-bottom: 40px;
421d935d
C
20
21 &.register-form {
22 width: 450px;
832a12b0 23
24 @media screen and (max-width: $mobile-view) {
25 width: 100%;
26 }
421d935d
C
27 }
28
29 &.instance-information {
30 width: 600px;
31 margin-bottom: 40px;
32
33 .block {
34 font-size: 15px;
35 margin-bottom: 15px;
36 padding: 0 $btn-padding-x;
37 }
38
39 @media screen and (max-width: 1500px) {
40 width: 450px;
41 }
832a12b0 42 @media screen and (max-width: $mobile-view) {
43 width: 100%;
44 }
421d935d
C
45
46 ngb-accordion ::ng-deep {
47 .btn {
48 font-weight: $font-semibold !important;
e66883b3 49 color: pvar(--mainForegroundColor) !important;
421d935d
C
50 }
51 }
52 }
1d5342ab
C
53 }
54}
55
b4a929ac
C
56.form-group-terms {
57 margin: 30px 0;
58}
5afdd0a5 59
8a19bee1 60.input-group {
41a676db 61 @include peertube-input-group(400px);
8a19bee1
C
62}
63
25a42e29
RK
64.input-group-append {
65 height: 30px;
66}
67
d235f6b0 68input:not([type=submit]) {
41a676db 69 @include peertube-input-text(400px);
d235f6b0 70 display: block;
8a19bee1 71
1d5342ab
C
72 &#username,
73 &#name {
74 width: auto !important;
8a19bee1
C
75 flex-grow: 1;
76 }
d235f6b0
C
77}
78
832a12b0 79@media screen and (max-width: $mobile-view) {
80 .form-group-terms,
81 .input-group,
82 input:not([type=submit]) {
83 width: 100%;
84 }
85}
86
1d5342ab
C
87input[type=submit],
88button {
d235f6b0 89 @include peertube-button;
7b272fd7 90 @include orange-button;
832a12b0 91
d235f6b0 92}
1f20622f
C
93
94.name-information {
95 margin-top: 10px;
96}
97
98.done-loader {
99 display: flex;
100 justify-content: center;
101 flex-direction: column;
102 align-items: center;
103
104 my-loader {
105 margin-bottom: 20px;
106
03652b31 107 ::ng-deep .loader div {
e66883b3 108 border-color: pvar(--mainColor) transparent transparent transparent;
1f20622f
C
109 }
110
111 & + div {
112 font-size: 15px;
113 }
114 }
115}