-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyleForm.css
More file actions
121 lines (100 loc) · 1.84 KB
/
styleForm.css
File metadata and controls
121 lines (100 loc) · 1.84 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background: linear-gradient(to right,#84ffc9,#aab2ff, #40c9ff, #eca0ff);
display: flex;
justify-content: center;
align-items: center;
font-family: "Poppins", sans-serif;
min-height: 100vh;
}
#main{
width:600px;
background-color: aliceblue;
display: flex;
flex-direction: column;
align-items: center;
border-radius: 10px;
max-height: 90vh;
overflow-y: scroll;
/* padding-bottom: 30px; */
}
#main h1{
margin-top: 5%;
margin-bottom: 5%;
color: #0a0403;
font-size: 2rem;
font-family: "Poppins-Bold", sans-serif;
font-weight: 600;
}
/* Detail input */
.inputclass{
width:250px;
height: 40px;
margin-left:30px;
}
.outerdetailsbox h2{
margin-top: 30px;
margin-left: 30px;
}
.detailsbox{
display: flex;
flex-direction: column;
width: fit-content;
}
.detailsbox label{
margin-top: 10px;
margin-left: 30px;
}
.innerdetailsbox{
display:flex;
flex-wrap: wrap;
}
#suspectdetails{
display:none;
}
/* Submit button */
.submitbutton{
display: flex;
justify-content: center;
}
#submit{
width:150px;
height: 30px;
margin: 30px;
border-radius: 20px;
background-color: blue;
color: white;
font-size: 1.2rem;
}
#submit:disabled{
background-color: grey;
}
/* CheckBoxes */
.checkbox{
display: flex;
justify-content: center;
align-items: center;
margin-top: 30px;
text-align: center;
}
.checkbox input{
width: 20px;
height: 20px;
transform: translateY(-0.5px);
margin-right: 5px;
}
/* scroll bar */
::-webkit-scrollbar{
width: 8px;
}
::-webkit-scrollbar-track{
background: #d1e5ff;
}
::-webkit-scrollbar-thumb{
background:linear-gradient(#642bff,#ff22e6);
border-radius: 10px;
}