-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
85 lines (83 loc) · 1.81 KB
/
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
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
body {
margin: 0;
padding: 0;
}
body:before {
content: '';
position: fixed;
width: 100vw;
height: 100vh;
background-image: url(images.jpeg);
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
-webkit-filter: blur(4px);
-moz-filter: blur(4px);
}
.login-form {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
width: 400px;
height: 450px;
padding: 80px 40px;
background: rgba(202, 192, 192, 0.6);
border-radius: 10px;
}
.freefire {
position: absolute;
width: 100px;
height:100px;
border-radius: 50%;
overflow: hidden;
top: calc(-80px/2);
left: calc(50% - 40px);
}
.logo {
margin: 0% 29%;
height: 100px;
width: 180px;
}
.login-form p {
margin: 0;
padding: 0;
font-weight: bold;
font-family: 'segoe UI';
color: rgb(255, 0, 0);
}
.login-form input {
width: 100%;
margin-bottom: 20px;
}
input[type=text], input[type=password], input[type=number] {
border: none;
border-bottom: 1px solid #ffffff;
background: transparent;
outline: none;
height: 35px;
color: black;
font-size: 15px;
}
input[type=submit] {
font-size: 20px;
font-weight: bold;
letter-spacing: 2px;
height: 35px;
color: rgb(0, 0, 0);
font-size: 15px;
background: transparent;
cursor: pointer;
border-radius: 5px;
border: 5px solid blue;
outline: none;
margin-top: 5%;
}
input[type=checkbox] {
width: 5%;
}