forked from cassxw/coffee-survey-form-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
103 lines (84 loc) · 1.57 KB
/
Copy pathstyles.css
File metadata and controls
103 lines (84 loc) · 1.57 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
body {
width: 100%;
height: 100vh;
margin: 0;
background-image: url(coffee.jpg);
background-size: 140%;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 1rem;
color: white;
}
h1 {
font-size: 50px;
margin-bottom: 0px;
}
p {
font-size: 13px;
font-style: italic;
}
header {
margin: 1em auto;
text-align: center;
}
form {
width: 60vw;
max-width: 500px;
min-width: 460px;
margin: 20px auto;
padding-bottom: 10px;
background-color: white;
color: rgb(43, 18, 6);
}
label {
display: block;
padding: 20px;
align-items: center;
}
.choice {
padding: 5px;
font-size: 13px;
font-weight: lighter;
}
input,
textarea,
select {
margin: 10px 0 0 0;
width: 100%;
max-width: 450px;
min-height: 2em;
font-family: inherit;
line-height: inherit;
}
input[type="radio"],
input[type="checkbox"] {
display: inline-block;
vertical-align: middle;
width: unset;
min-height: 1.25rem;
min-width: 1.25rem;
margin: 0 0.5em 0 0;
}
textarea {
min-height: 120px;
resize: vertical;
}
input::placeholder,
textarea::placeholder,
select::placeholder,
option {
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
color: rgb(96, 88, 83);
}
#submit {
display: block;
width: 25%;
margin: 20px auto;
padding: 0.75rem;
background: rgb(57, 33, 17);
border-radius: 5px;
border-color: black;
font-family: inherit;
font-size: 30px;
color: white;
cursor: pointer;
}