-
Notifications
You must be signed in to change notification settings - Fork 6
/
registration.css
80 lines (67 loc) · 1.54 KB
/
registration.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
.image{
filter: blur(2px);
-webkit-filter: blur(3px);
height: 728px;
width: 1520px;
object-fit: cover;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.login {
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
color: floralwhite;
font-weight: bold;
border: 3px solid #f1f1f1;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
width: 80%;
padding: 20px;
text-align: center;
}
a{
color: darkblue;
text-decoration:none;
}
a:hover{
text-decoration:underline;
}
.form{
width: 300px;
margin: 0 auto;
}
input {
width: 200px;
background: transparent;
border: transparent;
border-bottom: whitesmoke 1px solid;
padding: 10px;
color: black;
font-size: 14px;
margin-top: 10px;
font-weight: bold;
}
::placeholder {
color: wheat;
opacity: 1;
text-align: center;
}
input[type='submit']{
padding: 10px 25px 8px;
color: #fff;
background-color: maroon;
text-shadow: rgba(231,208,58,0.24) 0 1px 0;
font-size: 16px;
box-shadow: rgba(231,208,58,0.24) 0 2px 0 0 inset,#fff 0 1px 0 0;
border: 1px solid #e7d03a;
border-radius: 2px;
margin-top: 10px;
cursor:pointer;
}
input[type='submit']:hover {
background-color: f0df74;
}