-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
68 lines (61 loc) · 1.12 KB
/
styles.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
body {
background-color: lightblue;
}
h1 {
color: black;
font-family: "Gill Sans", sans-serif !important;
text-align: center;
font-size: 48px;
}
p {
color: darkgray;
font-family: "Gill Sans", sans-serif !important;
font-size: 20px;
}
.topnav {
overflow: hidden;
background-color: #e9e9e9;
}
.topnav a {
float: center;
display: block;
color: black;
text-align: center;
padding: 18px 20px;
text-decoration: none;
font-size: 17px;
color: black;
font-family: "Gill Sans", sans-serif !important;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #2196F3;
color: white;
}
.search input[type=text] {
float: center;
padding: 12px;
border: none;
margin-top: 4px;
margin-right: 8px;
font-size: 17px;
width: 90%;
color: black;
font-family: "Gill Sans", sans-serif !important;
}
@media screen and (max-width: 600px) {
.topnav a, .topnav input[type=text] {
float: center;
display: block;
text-align: left;
width: 100%;
margin: 0;
padding: 12px;
}
.topnav input[type=text] {
border: 1px solid #ccc;
}
}