aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+signup/+register/register.component.scss
blob: d22d58c4a4f598644d35b7bdb134d3dcd6d5bd5b (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
@import '_variables';
@import '_mixins';

.alert {
  font-size: 15px;
  text-align: center;
}

.wrapper {
  display: flex;
  flex-direction: column;

  .register-form {
    max-width: 600px;
    align-self: center;
  }

  .register-form,
  .instance-information {
    width: 100%;
  }

  .instance-information {
    margin-bottom: 15px;
  }
}

.form-group-terms {
  margin: 30px 0;
}

.input-group {
  @include peertube-input-group(100%);
}

.input-group-append {
  height: 30px;
}

.form-group-terms {
  width: 100% !important;
}

input:not([type=submit]) {
  @include peertube-input-text(100%);
  display: block;

  &#username,
  &#name {
    width: auto !important;
    flex-grow: 1;
  }
}

input[type=submit],
button {
  @include peertube-button;
  @include orange-button;
}

.name-information {
  margin-top: 10px;
}

.done-loader {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;

  my-loader {
    margin-bottom: 20px;

    ::ng-deep .loader div {
      border-color: pvar(--mainColor) transparent transparent transparent;
    }

    & + div {
      font-size: 15px;
    }
  }
}