X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Bsignup%2F%2Bregister%2Fregister.component.scss;h=5d0df81bd3f966f2f439e9e455f770da5f646a2f;hb=6f03f944c34f78b38a68128413b55186e0676949;hp=6f61b78f719df5a3c04eb7e6cbfc5461e7016327;hpb=b247a132709eb212fef4f77c4912dc0ec108f36b;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+signup/+register/register.component.scss b/client/src/app/+signup/+register/register.component.scss index 6f61b78f7..5d0df81bd 100644 --- a/client/src/app/+signup/+register/register.component.scss +++ b/client/src/app/+signup/+register/register.component.scss @@ -1,58 +1,102 @@ -@import '_variables'; -@import '_mixins'; +@use '_variables' as *; +@use '_mixins' as *; .alert { - font-size: 15px; + font-size: 16px; text-align: center; } -.wrapper { +.signup-disabled { + padding-top: 30vh; +} + +.header-title { + font-weight: normal; + font-size: 15px; + background-color: pvar(--mainColorVeryLight); + padding: 35px 25px 15px 25px; + margin: 0; +} + +.register-content { + font-size: 16px; +} + +my-instance-about-accordion { + display: block; + margin-bottom: 25px; +} + +.step-buttons { display: flex; - justify-content: space-between; flex-wrap: wrap; + align-items: center; + + .skip-step { + @include margin-right(30px); + + display: inline-block; + } + + .skip-step-description { + margin-top: 5px; + font-size: 14px; + } - & > div { - margin-bottom: 40px; - width: 450px; + .underline-orange { + color: pvar(--mainForegroundColor); - @media screen and (max-width: 500px) { - width: auto; + &:hover { + opacity: 0.8; } } -} -my-instance-features-table { - display: block; + button, + .skip-step { + margin-top: 20px; + margin-bottom: 20px; + } - margin-bottom: 40px; -} + .skip-step, + button[cdkStepperNext] { + @include margin-left(auto); + } -.form-group-terms { - margin: 30px 0; + .skip-step + button[cdkStepperNext] { + @include margin-left(0); + } } -.input-group { - @include peertube-input-group(400px); -} +button { + @include peertube-button-big; -.input-group-append { - height: 30px; -} + &[cdkStepperNext] { + @include orange-button; + } -input:not([type=submit]) { - @include peertube-input-text(400px); + &[cdkStepperPrevious] { + @include grey-button; + } +} - display: block; +.done-loader { + display: flex; + justify-content: center; + flex-direction: column; + align-items: center; - &#username, - &#name { - width: auto !important; - flex-grow: 1; + my-loader { + margin-bottom: 20px; } } -input[type=submit], -button { - @include peertube-button; - @include orange-button; +@media screen and (max-width: $small-view) { + .step-buttons { + justify-content: space-between; + + .skip-step, + button[cdkStepperNext] { + @include margin-left(0); + } + } }