8ac231475ecc52c1ab015c18e04eb72a981752cd
[oweals/peertube.git] / client / src / app / login / login.component.scss
1 @import '_variables';
2 @import '_mixins';
3
4 label {
5   display: block;
6 }
7
8 input:not([type=submit]) {
9   @include peertube-input-text(340px);
10   display: inline-block;
11   margin-right: 5px;
12
13 }
14
15 input[type=submit] {
16   @include peertube-button;
17   @include orange-button;
18 }
19
20 .create-an-account, .forgot-password-button {
21   color: var(--mainForegroundColor);
22   cursor: pointer;
23   transition: opacity cubic-bezier(0.39, 0.575, 0.565, 1);
24   
25   &:hover {
26     text-decoration: none !important;
27     opacity: .7 !important;
28   }
29 }