-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (48 loc) · 760 Bytes
/
style.css
File metadata and controls
55 lines (48 loc) · 760 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
.container {
display: flex;
justify-content: center;
align-items: center;
/* height: 100vh; */
}
.form {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
background-color: #f0f0f0;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
h1 {
margin-top: 0;
}
.input-row {
display: flex;
align-items: center;
margin-bottom: 10px;
}
label {
margin-right: 10px;
}
input[type="text"], select {
padding: 5px;
border-radius: 5px;
border: none;
}
button {
margin-left: 10px;
padding: 5px;
border-radius: 5px;
border: none;
background-color: #4CAF50;
color: white;
}
textarea {
padding: 5px;
border-radius: 5px;
border: none;
resize: none;
width: 100%;
height: 150px;
margin-bottom: 10px;
}