-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprac.css
More file actions
46 lines (40 loc) · 800 Bytes
/
Copy pathprac.css
File metadata and controls
46 lines (40 loc) · 800 Bytes
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
* {
margin: 0;
padding: 0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}
body {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: rgb(255, 191, 72);
}
.form-container {
width: 60%;
background-color: rgb(255, 255, 255);
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
padding: 24px;
border-radius: 5px;
}
.form-container header {
font-weight: 500;
font-size: 1.5rem;
margin-bottom: 4px;
}
.form-container form {
padding-bottom: 12px;
}
.form-container .input-box {
margin-top: 12px;
}
.form-container input {
width: 100%;
outline: none;
border: 1px solid #ccc;
border-radius: 4px;
height: 25px;
margin-top: 4px;
padding: 0 4px;
}