-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorial.css
More file actions
71 lines (59 loc) · 936 Bytes
/
Copy pathtutorial.css
File metadata and controls
71 lines (59 loc) · 936 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
60
61
62
63
64
65
66
67
68
69
70
71
body {
background-color: #b2b2b2;
}
h1 {
text-align: center;
font-family: Georgia;
font-size: 40px;
}
h3 {
text-align: right;
font-family: Georgia;
font-size: 20px;
}
p {
margin:20px;
width: 1200px;
padding-left:5px;
text-align: left;
font-family: Georgia;
font-size: 20px;
margin-right:auto;
margin-left:auto;
text-indent: 50px;
}
ul {
margin:20px;
width: 800px;
padding-left:5px;
text-align: left;
font-family: Georgia;
font-size: 20px;
margin-right:auto;
margin-left:auto;
}
.topnav {
background-color: #333;
overflow: hidden;
}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #498bf4;
color: white;
}
footer {
right: 0;
bottom: 0;
padding: 1rem;
}