-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles3.css
75 lines (66 loc) · 1.35 KB
/
styles3.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
/* Body Styling */
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: black;
color: white;
/* Removed height: 100vh; */
display: flex;
align-items: flex-start; /* Aligned content to top */
justify-content: center;
}
/* Content Wrapper Styling */
.content-wrapper {
max-width: 900px;
padding: 40px 20px 20px 20px; /* Added padding at the top */
box-sizing: border-box;
line-height: 1.6;
text-align: center;
}
/* Heading 1 Styling */
h1 {
font-size: 2em;
border-bottom: 1px solid white;
padding-bottom: 10px;
margin-bottom: 20px;
}
/* Heading 2 Styling */
h2 {
font-size: 1.5em;
margin-top: 20px;
margin-bottom: 15px;
}
/* Paragraph and Ordered List Styling */
p, ol {
font-size: 1em;
text-align: justify;
margin-bottom: 20px;
}
/* Ordered List Styling */
ol {
list-style-position: inside;
}
/* Link Styling */
a {
color: lightblue;
text-decoration: none;
}
/* Hover effect for links */
a:hover {
text-decoration: underline;
}
/* Back Button Styling */
.back-button {
display: inline-block;
padding: 10px 20px;
margin-bottom: 20px;
border: 2px solid white;
border-radius: 5px;
transition: background-color 0.3s ease, color 0.3s ease;
}
/* Hover effect for the back button */
.back-button:hover {
background-color: white;
color: black;
}