-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproposeevents.css
More file actions
43 lines (39 loc) · 882 Bytes
/
Copy pathproposeevents.css
File metadata and controls
43 lines (39 loc) · 882 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
body {
font-family: 'Poppins', sans-serif;
background-color: #f2f2f2;
margin: 0;
padding: 0;
}
.form-container {
width: 400px;
margin: 100px auto;
background-color: #fff;
padding: 20px;
border-radius: 30px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
margin-left: 25%;
margin-right: 20%;
}
.form-container input,
.form-container textarea {
width: 100%;
padding: 8px;
border-radius: 3px;
border: 1px solid #ccc;
margin-bottom: 10px;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
.form-container button {
background-color: #000080;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 3px;
cursor: pointer;
display: block;
margin: 0 auto;
}
.form-container button:hover {
background-color: #1976D2;
}