-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (53 loc) · 911 Bytes
/
style.css
File metadata and controls
61 lines (53 loc) · 911 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100%;
width: 100%;
}
.main-box {
border: 2px solid red;
height: auto;
width: 50%;
margin: 10vh auto;
padding: 1rem;
background-color: yellow;
}
form {
border: 2px solid blue;
height: 100%;
width: 100%;
padding: 0.5rem;
}
form h1 {
text-align: center;
margin: 0.5rem;
}
form .input-box {
height: auto;
width: auto;
padding: 0.2rem;
display: flex;
align-items: start;
justify-content: center;
gap: 0.2rem;
}
.input-box label {
border: 1px solid gray;
height: 100%;
width: 50%;
padding: 0.3rem;
}
.input-box input,
textarea {
height: 100%;
width: 50%;
padding: 0.2rem;
font-size: 1rem;
outline: none;
}
.input-box #submit {
cursor: pointer;
}