-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
106 lines (92 loc) · 1.64 KB
/
main.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
body {
height: auto;
width: auto;
display: grid;
}
#landing-page {
height: auto;
width: auto;
}
h1 {
color: #0d68b3;
width: 50%;
margin: auto;
border-radius: .3rem;
display: flex;
justify-content: center;
flex-direction: column;
margin-top: 15vh;
margin-bottom: 0px;
text-align: center;
font-family: 'Poller One', cursive;
}
h5 {
color: #0d3b66;
text-align: center;
font-family: 'Titillium Web', sans-serif;
}
#state-alerts {
color: #0b3469;
padding-left: 15vw;
padding-right: 15vw;
margin: auto;
text-align: left;
}
#state-form {
text-align: center;
margin-top: 5px;
font-family: 'Titillium Web', sans-serif;
}
#state-search {
text-align: center;
font-family: 'Titillium Web', sans-serif;
}
#search {
font-family: 'Titillium Web', sans-serif;
}
::-webkit-input-placeholder { /* Found on css-tricks.com */
color: rgb(120, 161, 161);
}
h3 {
margin-bottom: 5px;
font-family: 'Poller One', cursive;
width: 12vw;
align-content: flex-start;
overflow-wrap: break-word;
}
h4{
color: #0d68b3;
width: 50vw;
margin-bottom: 5px;
margin-top: 5px;
font-family: 'Titillium Web', sans-serif;
display: flex;
align-content: space-around;
}
h3, h4 {
height: 30px;
display: inline-block;
margin: 30px 10px 10px 0px;
justify-content: flex-start;
}
p {
margin-top: 10px;
font-family: 'Barlow', sans-serif;
}
@media screen and (max-width: 600px) {
h5, h4 {
display: inline-block;
padding-left: 7vw;
padding-right: 7vw;
height: auto;
}
h3{
margin-top: 30px;
width: 50vw;
}
h4 {
margin-top: auto;
text-align: left;
padding: 0px;
}
}