-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
44 lines (38 loc) · 854 Bytes
/
style.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
body {
padding-top: 10px;
padding-bottom: 10px;
position: relative;
}
body::before {
background: url(image.jpg) no-repeat center center fixed;
content: '';
z-index: -1;
width: 100%;
height: 100%;
position:absolute;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
filter: blur(5px);
}
.login-box{
max-width: 700px;
float: none;
margin: 150px auto;
}
.login-left{
background: rgba(211, 211, 211, 0.5);
padding: 30px;
}
.login-right{
background: grey;
padding: 30px;
}
.form-control{
background-color: transparent !important;
}