-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (71 loc) · 1.3 KB
/
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
* {
/* border: black solid 1px; */
box-sizing: border-box;
border: none;
border-collapse: collapse;
color: white;
font-family: 'Roboto', sans-serif;
}
body {
width: 100%;
max-width: 300px;
}
#contact {
background-color:rgba(250, 50, 75, 255);
text-align: center;
padding: 3%;
}
#contactHeaders {
width: 100%;
padding: 0;
margin: 0;
}
.contactHeaderLarge {
font-size: xx-large;
font-weight: bolder;
}
.contactHeaderSmall {
font-size: xx-small;
}
input, select, textarea {
background-color: rgba(202,43,58,255);
color: white;
width: 100%;
border: none;
padding: 2%;
margin: 2% 0;
display: block;
}
input, textarea {
font-size: xx-small;
font-weight: lighter;
}
textarea {
resize: none;
}
.subjectdiv {
position: relative;
}
.subjectdiv:after {
content: '▼';
font-size: 4px;
/* offset from the top right */
position: absolute;
top: 10px;
right: 6px;
pointer-events: none;
}
#subject {
font-size: xx-small;
appearance: none; /* hide the default down-arrow */
}
#submit {
background-color: white;
color: red;
width: 100%;
font-size: x-small;
border-bottom: black 2px solid;
border-bottom-style: groove;
padding: 1.5em;
margin-bottom: 3%;
}