forked from ImZackAdams/TechStudentHub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
56 lines (49 loc) · 825 Bytes
/
Copy pathstyles.css
File metadata and controls
56 lines (49 loc) · 825 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
body {
font-family: Arial, sans-serif;
background-color: #f9f9f9;
color: #333;
line-height: 1.6;
margin: 0;
padding: 0;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header h1,
main h2 {
background-color: #003366;
color: white;
padding: 10px;
text-align: center;
}
main h3 {
padding-left: 15px;
background-color: #0077CC;
color: white;
}
ul {
list-style-type: none;
padding: 0;
}
ul li a {
background-color: #e7e7e7;
color: #333;
padding: 5px;
display: block;
text-decoration: none;
margin-bottom: 5px;
}
ul li a:hover {
background-color: #ccc;
}
footer {
background-color: #003366;
color: white;
text-align: center;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
}