-
Notifications
You must be signed in to change notification settings - Fork 0
/
style-error.css
95 lines (75 loc) · 1.59 KB
/
style-error.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
body, html {
height: 100%;
background-repeat: no-repeat;
background: radial-gradient(circle, #15a9d6, #f52105, #cf0404, #700202);
background-size: 600% 100%;
position: relative;
}
.login-form {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 80px 60px 60px;
background: rgba(255, 255, 255, 0.8);
border-radius: 10px;
z-index: 9999;
}
.login-form h1 {
text-align: center;
font-size: 2.5em;
margin-bottom: 50px;
color: #000;
z-index: 9999;
}
.login-form label {
display: block;
margin-bottom: 10px;
font-size: 1.2em;
color: #000;
z-index: 9999;
}
.login-form input[type="email"],
.login-form input[type="password"] {
width: 100%;
padding: 10px;
font-size: 1.2em;
border-radius: 5px;
border: none;
margin-bottom: 20px;
background: #eee;
z-index: 9999;
}
.login-form input[type="submit"] {
background: #000;
color: #fff;
border: none;
padding: 10px;
font-size: 1.2em;
border-radius: 5px;
cursor: pointer;
z-index: 9999;
}
.login-form input[type="submit"]:hover {
background: #444;
z-index: 9999;
}
@media screen and (max-width: 768px) {
.login-form {
padding: 50px 30px 30px;
max-width: 90%;
z-index: 9999;
}
.login-form h1 {
font-size: 2em;
margin-bottom: 30px;
z-index: 9999;
}
.login-form input[type="email"],
.login-form input[type="password"] {
font-size: 1em;
}
.login-form input[type="submit"] {
font-size: 1em;
}
}