-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
59 lines (50 loc) · 795 Bytes
/
styles.css
File metadata and controls
59 lines (50 loc) · 795 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
body {
background: #e4f4fe;
font-family: sans-serif;
}
h1 {
text-align: center;
font-family: Arial;
}
#growthpic {
display: block;
width: 65%;
margin: auto;
}
header ul {
display: block;
list-style-type: none;
background-color: #92a8d1;
background-image: url("grass-background.jpg");
background-size: 100%;
background-repeat: no-repeat;
width: 50%;
padding: 15px;
margin: auto;
border: 1px solid #391d42;
text-align: center;
}
header li {
display: inline-block;
width: 20%;
font-family: helvetica;
padding: 10px;
white-space: nowrap;
}
header a:hover {
background-color: yellow;
}
a:visited {
color: orange;
}
.italic {
font-style: italic;
}
@media only screen and (max-width: 600px) {
header {
font-size: 70%;
}
header ul {
background-size: 150%;
}
}