-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogstyle.css
105 lines (103 loc) · 1.93 KB
/
logstyle.css
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
@import url("https://fonts.googleapis.com/css?family=Lato:400,700");
#bg {
background-image: url('img/background.jpg');
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-size: cover;
filter: blur(5px);
}
body {
font-family: 'Lato', sans-serif;
color: #4A4A4A;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
overflow: hidden;
margin: 0;
padding: 0;
}
form {
width: 350px;
position: relative;
}
form .form-field::before {
font-size: 20px;
position: absolute;
left: 15px;
top: 17px;
color: #888888;
content: " ";
display: block;
background-size: cover;
background-repeat: no-repeat;
}
form .form-field:nth-child(1)::before {
background-image: url(img/user-icon.png);
width: 20px;
height: 20px;
top: 15px;
}
form .form-field {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-bottom: 1rem;
position: relative;
}
form input {
font-family: inherit;
width: 100%;
outline: none;
background-color: #fff;
border-radius: 4px;
border: none;
display: block;
padding: 0.9rem 0.7rem;
box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
font-size: 17px;
color: #4A4A4A;
text-indent: 40px;
}
form .btn {
outline: none;
border: none;
cursor: pointer;
display: inline-block;
margin: 0 auto;
padding: 0.9rem 2.5rem;
text-align: center;
background-color: #47AB11;
color: #fff;
border-radius: 4px;
box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
font-size: 17px;
}
#otp{
display: none;
}
#loginbtn{
display: none;
}
#msgbox{
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 300px;
height: 70px;
background: rgba(0,0,0,0.5);
color: white;
text-align: center;
line-height: 70px;
display: none;
}