-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
76 lines (62 loc) · 1013 Bytes
/
main.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
/* Don;t Edit */
.fas {
margin-left: 10px;
}
/* End of Don;t Edit */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Roboto", sans-serif;
}
/* Form General */
#formInfo {
display: flex;
justify-content: center;
align-items: center;
align-content: center;
flex-direction: column;
}
/* End of Form General */
.inputCommon {
width: 75vw;
height: 36px;
margin-top: 24px;
padding-left: 5px;
}
.pCodeCity > .inputCommon {
width: 37.5vw;
}
/* Submit Button */
#submitBtn {
width: 75vw;
height: 60px;
border: none;
outline: none;
background-color: rgb(0, 119, 255);
color: white;
font-size: 20px;
margin-top: 28px;
transition: 0.2s ease-in-out;
}
#submitBtn:hover {
background-color: rgb(0, 81, 255);
cursor: pointer;
}
/* End of Submit Button */
i {
font-size: 18px;
}
.edit:hover {
cursor: pointer;
color: rgb(126, 57, 35);
}
.delete {
margin-left: 5px;
}
.delete:hover {
cursor: pointer;
color: rgb(219, 40, 64);
}