-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaster.css
More file actions
124 lines (105 loc) · 2.4 KB
/
master.css
File metadata and controls
124 lines (105 loc) · 2.4 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&display=swap');
body {
margin: 0;
font-family: 'Open Sans', sans-serif;
font-weight: 400;
color: rgb(235, 235, 235) !important;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
*{
margin:0;
box-sizing: border-box;
}
input::placeholder {
color: white; /* Placeholder text color */
opacity: 1; /* Ensure full visibility in some browsers */
}
#login-window{
display:flex;
justify-content:center;
align-items:center;
height: 100vh;
width: 100vw;
background-size: cover;
background-position: center;
background-image: url('./images/shutterstock_1640437144-scaled.webp');
background-repeat: no-repeat;
}
#login-box{
width:25%;
min-width: 320px !important;
box-shadow: 0px 0px 40px #d4d4d4;
padding:1rem;
}
#logo{
display:flex;
justify-content:center;
margin:1rem 0;
}
.logo-font{
font-family: 'Dancing Script', cursive;
font-weight: 600;
font-size: 3rem;
text-align: center;
margin-bottom: 3rem;
}
.form{
margin:1rem 0;
}
.text-pale-light{
color: rgb(230, 230, 230) !important;
}
.full-opacity-bg{
background-color: transparent !important;
}
.rounded-custom{
border-radius: 20px !important;
}
.input{
padding:0.5rem;
width:100%;
font-size:1rem;
font-weight:400;
line-height:1.5;
margin-top:8px
}
.rounded-custom-15{
border-radius: 15px !important;
}
.remember-section{
display:block;
min-height: 1.5rem;
margin:1rem 0;
}
.btn-hover {
width: 200px;
font-size: 16px;
font-weight: 600;
color: #fff;
cursor: pointer;
margin: 20px;
height: 55px;
text-align:center;
border: none;
background-size: 300% 100%;
border-radius: 50px;
moz-transition: all .4s ease-in-out;
-o-transition: all .4s ease-in-out;
-webkit-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
}
.btn-hover:hover {
background-position: 100% 0;
moz-transition: all .4s ease-in-out;
-o-transition: all .4s ease-in-out;
-webkit-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
}
.btn-hover:focus {
outline: none;
}
.btn-hover.color-9 {
background-color:#3D4267
}