-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetails.css
59 lines (59 loc) · 1.08 KB
/
details.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
body {
margin: 0;
background: url(cake.jpeg);
padding: 0;
background-size: cover;
background-position: center;
font-family: sans-serif;
}
.singup_box {
width: 320px;
height: 450px;
background: #000;
color: #fff;
top: 50%;
left: 50%;
position: absolute;
transform: translate(-50%, -50%);
box-sizing: border-box;
padding: 50px;
}
.singup_box h1 {
margin: 0;
padding: 0 0 20px;
text-align: center;
font-size: 50px;
}
.singup_box p {
margin: 0;
padding: 0;
font-weight: bold;
}
.singup_box input {
width: 100%;
margin-bottom: 20px;
}
.singup_box input[type="text"],
input[type="password"],
input[type="number"] {
border: none;
border-bottom: 1px solid #fff;
background: transparent;
outline: none;
height: 40px;
color: #fff;
font-size: 16px;
}
.singup_box input[type="submit"]:hover {
cursor: pointer;
background: #ffc107;
color: #000;
}
.singup_box input[type="submit"] {
border: none;
margin: none;
background-color: red;
color: #fff;
height: 40px;
border-radius: 20px;
}