-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (52 loc) · 875 Bytes
/
style.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
/* This is your new style.css file */
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
h1 {
color: #333;
font-size: 2em;
text-align: center;
padding: 20px 0;
}
p {
color: #666;
font-size: 1.2em;
line-height: 1.6;
max-width: 800px;
margin: 0 auto;
padding: 0 10px;
}
a {
color: #0088cc;
}
a:hover {
color: #005580;
}
/* Add some color and style to your navigation menu */
nav {
background-color: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
nav a {
color: #fff;
margin: 0 10px;
text-decoration: none;
}
nav a:hover {
color: #0088cc;
}
/* Style your footer */
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px 0;
position: fixed;
width: 100%;
bottom: 0;
}