-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
110 lines (100 loc) · 1.89 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
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
.indexBody {
background-image: url("https://assets-global.website-files .com/5f2a93fe880654a977c51043/620fd215f344f16633f1aafc_hero_2.jpeg");
background-size: cover;
}
body {
background-color: #20b49e;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
flex-direction: column;
}
* {
font-family: sans-serif;
box-sizing: border-box;
}
form {
width: 500px;
border: 2px solid #ccc;
padding: 30px;
color: white;
border-radius: 15px;
background: rgba(255, 255, 255, 0.25);
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.18);
}
h2 {
text-align: center;
margin-bottom: 40px;
}
input {
display: block;
border: 2px solid #ccc;
width: 95%;
padding: 10px;
font-size: 16px;
font-style: bold;
margin: 10px auto;
border-radius: 5px;
}
label {
color: rgb(249, 249, 249);
font-size: 18px;
padding: 10px;
}
button {
float: right;
background: rgb(86, 194, 237);
padding: 20px 30px;
color: #fff;
border-radius: 5px;
margin-right: 10px;
border: none;
transition: 0.3s ease-in-out;
}
button:hover {
background: rgb(45, 246, 112);
color: rgb(0, 0, 0);
transition: 0.3s ease-in-out;
}
.error {
background: #f2dede;
color: #a94442;
padding: 10px;
width: 95%;
border-radius: 5px;
margin: 20px auto;
}
input.acctype {
display: revert;
border: 2px solid #ccc;
width: revert;
padding: 0;
font-size: 16px;
font-style: revert;
border-radius: 0;
}
h1 {
text-align: center;
color: #fff;
}
a {
float: right;
background: #555;
padding: 10px 15px;
color: #fff;
border-radius: 5px;
margin-right: 10px;
border: none;
text-decoration: none;
}
a:hover {
opacity: 0.7;
}
/* ------------------------------- */
/* ----------------------------- */