-
Notifications
You must be signed in to change notification settings - Fork 6
/
acceptor-style.css
83 lines (73 loc) · 1.44 KB
/
acceptor-style.css
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
body {
font-family:"Montserrat", sans-serif;
background: linear-gradient(to right, #d4fc79, #96e6a1);
margin: 0;
padding: 0;
color: #333;
}
.container {
width: 90%;
max-width: 800px;
margin: 50px auto;
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #32a852;
font-size: 2.5em;
margin-bottom: 20px;
}
.form-grid {
display: grid;
grid-template-columns: 1fr;
grid-gap: 20px;
}
form fieldset {
border: none;
padding: 0;
margin-bottom: 20px;
}
legend {
font-weight: bold;
font-size: 1.2em;
color: #32a852;
margin-bottom: 10px;
}
label {
display: block;
margin-bottom: 8px;
font-weight: bold;
color: #555;
}
input[type="text"],
input[type="date"],
input[type="tel"],
input[type="email"],
select,
textarea {
width: calc(100% - 20px);
padding: 10px;
margin-bottom: 20px;
border: 2px solid #ddd;
border-radius: 5px;
font-size: 1em;
}
textarea {
resize: vertical;
}
button[type="submit"] {
background-color: #32a852;
color: #fff;
padding: 12px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 1.2em;
transition: background-color 0.3s;
}
button[type="submit"]:hover {
background-color: #28a745;
}