-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
59 lines (57 loc) · 760 Bytes
/
styles.css
File metadata and controls
59 lines (57 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
56
57
58
59
h1{
font-family: 'Fira Sans', sans-serif !important;
}
body{
font-family: 'Roboto', sans-serif !important;
}
#fName, #lName, #subject{
display:block;
}
.nameBox{
margin:15px 0;
}
#subject{
height:150px;
width:100%;
}
#submit {
padding: 15px;
background-color: #ddd;
border:none;
border-radius:10px;
cursor: pointer;
margin-top:15px;
}
.container{
max-width:700px;
margin-top:15px;
}
#thanks{
margin-top:100px;
}
#homeButton{
display:block;
width:100px;
margin: 0 auto;
}
p{
padding:15px 0;
}
@media (max-width: 1024px) {
html{
font-size:12px;
}
.container{
max-width:800px;
}
}
@media (max-width: 768px) {
.container{
max-width:500px;
}
}
@media (max-width: 510px) {
.container{
max-width:300px;
}
}