-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyles.CSS
More file actions
48 lines (42 loc) · 687 Bytes
/
Styles.CSS
File metadata and controls
48 lines (42 loc) · 687 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
/* General Page Styling */
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 20px;
padding: 20px;
text-align: center;
}
/* Heading Styles */
h1 {
color: #333;
font-size: 34px;
}
h2 {
color: #555;
font-size: 24px;
margin-top: 20px;
}
/* Horizontal Line Styling */
hr {
border: 2px solid #888;
width: 50%;
margin: auto;
}
/* List Styling */
ul, ol {
display: inline-block;
text-align: left;
margin-top: 10px;
padding: 10px;
}
li {
font-size: 18px;
color: #444;
padding: 5px;
}
/* Adding hover effect */
li:hover {
color: #007BFF;
font-weight: bold;
cursor: pointer;
}