-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
90 lines (76 loc) · 1.16 KB
/
index.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
* {
margin: 0;
padding: 0;
border: 0;
outline: 0;
}
body {
font-family: sans-serif;
}
.header {
background: url("background.jpg") no-repeat top center fixed;
height: 700px;
width: 100%;
background-size: cover;
min-width: 900px;
}
.header h1 {
padding-top: 100px;
margin-left: 70%;
font-size: 80px;
}
.header h2 {
margin-left: 71%;
}
.header ul {
margin-top: 12px;
list-style-type: none;
margin-left: 71%;
}
.header li {
display: inline;
}
.about {
background-color: white;
text-align: center;
padding-top: 15px;
padding-bottom: 50px;
}
.about h2 {
font-size: 40px;
}
.about p {
font-size: 20px;
margin-left: 20%;
margin-right: 20%;
padding-top: 10px;
padding-bottom: 10px;
}
.about a {
text-decoration: none;
font-weight: bold;
color: darkblue;
}
.weather {
background: url("weather_background.jpg") no-repeat center center fixed;
height: 300px;
width: 100%;
color: white;
text-shadow: black 1px 1px;
text-align: center;
padding-top: 25px;
}
.weather h2 {
font-size: 35px;
}
.weather p {
margin-top: 35px;
font-size: 20px;
margin-left: 30%;
margin-right: 30%;
}
.weather a {
color: teal;
font-size: 25px;
text-decoration: none;
}