-
Notifications
You must be signed in to change notification settings - Fork 0
/
Reserve.css
94 lines (74 loc) · 1.3 KB
/
Reserve.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
body{
margin:0;
padding: 0;
background: url(drink.jpg);
background-size: cover;
background-position: center;
font-family: sans-serif;
}
.form-area {
width: 320px;
height: 340px;
background: rgba(0, 0, 0, 0.5);
color: #9d9d9d;
top: 50%;
left: 50%;
position: absolute;
transform: translate(-50%,-50%);
box-sizing: border-box;
}
.form-area p{
margin: 0;
padding: 0;
font-weight: bold;
color: #ffffff;
}
.form-area input{
width: 100%;
margin-bottom: 20px;
border: none;
border-radius: 30px;
}
.form-area select{
width: 100%;
margin-bottom: 20px;
border: none;
border-radius: 30px;
}
.form-area input[type=email],
.form-area input[type=password]{
border: none;
border-bottom: 1px solid #ffffff;
background-color: transparent;
outline: none;
height: 18px;
color: #ffffff;
display: 16px;
}
::placeholder{
color: silver;
}
.form-area a{
color:#ffffff ;
font-weight: bold;
}
.form-area h4{
margin: 0;
padding: 0 0 20px;
font-weight: bold;
color: #FFDEAD;
}
.form-area button{
border: none;
height: 30px;
width: 90%;
outline: none;
font-size: 15px;
background-color: #FFDEAD;
cursor: pointer;
border-radius: 20px;
float: none;
}
.form-area button:hover{
background-color: silver ;
}