]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+signup/+register/register.component.scss
add aria-hidden to non-descriptive icons (#2844)
[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;
23 }
24
25 &.instance-information {
26 width: 600px;
27 margin-bottom: 40px;
28
29 .block {
30 font-size: 15px;
31 margin-bottom: 15px;
32 padding: 0 $btn-padding-x;
33 }
34
35 @media screen and (max-width: 1500px) {
36 width: 450px;
37 }
38
39 ngb-accordion ::ng-deep {
40 .btn {
41 font-weight: $font-semibold !important;
42 color: var(--mainForegroundColor) !important;
43 }
44 }
45 }
1d5342ab 46
ece3029b 47 @media screen and (max-width: $mobile-view) {
1d5342ab
C
48 width: auto;
49 }
50 }
51}
52
b4a929ac
C
53.form-group-terms {
54 margin: 30px 0;
55}
5afdd0a5 56
8a19bee1 57.input-group {
41a676db 58 @include peertube-input-group(400px);
8a19bee1
C
59}
60
25a42e29
RK
61.input-group-append {
62 height: 30px;
63}
64
d235f6b0 65input:not([type=submit]) {
41a676db 66 @include peertube-input-text(400px);
1d5342ab 67
d235f6b0 68 display: block;
8a19bee1 69
1d5342ab
C
70 &#username,
71 &#name {
72 width: auto !important;
8a19bee1
C
73 flex-grow: 1;
74 }
d235f6b0
C
75}
76
1d5342ab
C
77input[type=submit],
78button {
d235f6b0 79 @include peertube-button;
7b272fd7 80 @include orange-button;
d235f6b0 81}
1f20622f
C
82
83.name-information {
84 margin-top: 10px;
85}
86
87.done-loader {
88 display: flex;
89 justify-content: center;
90 flex-direction: column;
91 align-items: center;
92
93 my-loader {
94 margin-bottom: 20px;
95
03652b31 96 ::ng-deep .loader div {
1f20622f
C
97 border-color: var(--mainColor) transparent transparent transparent;
98 }
99
100 & + div {
101 font-size: 15px;
102 }
103 }
104}