]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+login/login.component.scss
Lazy load all routes
[github/Chocobozzz/PeerTube.git] / client / src / app / +login / login.component.scss
CommitLineData
63c4db6d
C
1@import '_variables';
2@import '_mixins';
3
2b084d70
C
4label {
5 display: block;
6}
7
d235f6b0
C
8input:not([type=submit]) {
9 @include peertube-input-text(340px);
2b084d70
C
10 display: inline-block;
11 margin-right: 5px;
12
d235f6b0
C
13}
14
15input[type=submit] {
16 @include peertube-button;
7b272fd7 17 @include orange-button;
d235f6b0 18}
ecb4e35f 19
696fa4c0 20.create-an-account, .forgot-password-button {
e66883b3 21 color: pvar(--mainForegroundColor);
696fa4c0 22 cursor: pointer;
000eb0e4 23 transition: opacity cubic-bezier(0.39, 0.575, 0.565, 1);
ebefc902 24
07872fdf 25 &:hover {
000eb0e4
RK
26 text-decoration: none !important;
27 opacity: .7 !important;
07872fdf 28 }
2b084d70 29}
ebefc902
C
30
31.login-form-and-externals {
32 display: flex;
33 flex-wrap: wrap;
34 font-size: 15px;
35
36 form {
37 margin: 0 50px 20px 0;
38 }
39
40 .external-login-blocks {
ebefc902
C
41 min-width: 200px;
42
43 .block-title {
44 font-weight: $font-semibold;
45 }
46
47 .external-login-block {
bc90883f
C
48 @include disable-default-a-behaviour;
49
ebefc902
C
50 cursor: pointer;
51 border: 1px solid #d1d7e0;
52 border-radius: 5px;
e66883b3 53 color: pvar(--mainForegroundColor);
ebefc902
C
54 margin: 10px 10px 0 0;
55 display: flex;
56 justify-content: center;
57 align-items: center;
58 min-height: 35px;
59 min-width: 100px;
60
61 &:hover {
62 background-color: rgba(209, 215, 224, 0.5)
63 }
ebefc902
C
64 }
65 }
66}