-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.scss
77 lines (65 loc) · 2.23 KB
/
main.scss
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
.login {
.container-fluid {
height: 100vh;
display: flex;
background-color: #757575;
align-items: center;
background-image: url(assets/leftbg.svg);
background-size: contain;
background-repeat: no-repeat;
.container {
max-width: 1300px;
.left {
img {
max-width: 350px;
}
.heading {
font-size: 49px;
font-weight: 700;
padding-top: 50px;
color: white;
}
.sub-heading {
font-size: 23px;
font-weight: 500;
color: rgba($color: #fff, $alpha: 0.7);
}
}
.right {
display: flex;
align-items: center;
justify-content: flex-end;
padding-right: 40px;
.login_card {
max-width: 330px;
background-color: #000;
padding: 2.2rem 3rem;
color: white;
border-radius: 7px;
.form-row {
padding-top: 1rem;
padding-bottom: 1rem;
}
button {
background-color: transparent;
padding: 0.4rem 1.3rem;
outline: none;
border: 2px solid #8762a3;
color: #8762a3;
font-weight: 600;
&:hover {
border: 2px solid white;
color: white;
background-color: #8762a3;
}
&:active{
border: 2px solid white;
color: white;
background-color: #3c244e;
}
}
}
}
}
}
}