-
Notifications
You must be signed in to change notification settings - Fork 0
/
AddCrime.html
48 lines (43 loc) · 1012 Bytes
/
AddCrime.html
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
<style>
.form {
margin: 0;
padding: 0;
background-color: white;
background-size: cover;
background-position: center;
background-attachment: fixed;
font-family: sans-serif;
}
#title {
text-align: center;
}
.form {
background-color: #e5e5e5;
color: #000;
top: 45%;
left: 50%;
position: absolute;
transform: translate(-50%, -40%);
box-sizing: border-box;
padding: 10px 30px;
border-radius: 7px;
}
.form p {
font-weight: bold;
line-height: 25px;
}
.form input[type="text"],
input[type="password"] {
border: none;
border-bottom: 1px solid #000;
background: transparent;
outline: none;
height: 40px;
color: #000;
font-size: 16px;
}
.form input {
width: 100%;
margin-bottom: 20px;
}
</style>