-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
115 lines (99 loc) · 1.7 KB
/
styles.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/* General Styles */
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f5f5f5;
display: flex;
justify-content: center;
}
/* Container for Centered Content */
.container {
max-width: 800px; /* Restrict content width */
width: 100%;
margin: 20px;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Header Styling */
header {
text-align: center;
margin-bottom: 30px;
}
header h1 {
color: #007c89;
font-size: 2em;
}
header p {
color: #555;
margin-top: 10px;
}
/* Section Styling */
section {
background: white;
padding: 20px;
margin-bottom: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h2 {
color: #007c89;
margin-bottom: 15px;
}
h3 {
color: #007c89;
margin-top: 30px;
margin-bottom: 15px;
}
/* List Styling */
ul {
list-style-type: square;
padding-left: 20px;
margin-bottom: 20px;
}
ul li {
margin-bottom: 10px;
}
/* Link Styling */
a {
color: #007c89;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Footer Styling */
footer {
text-align: center;
margin-top: 40px;
font-size: 0.9em;
color: #666;
}
/* References Section Styling */
#references {
margin-top: 40px;
border-top: 1px solid #ccc;
padding-top: 20px;
}
#references ol {
padding-left: 20px;
}
#references li {
margin-bottom: 10px;
}
/* Responsive Design */
@media (max-width: 768px) {
.container {
max-width: 90%;
padding: 15px;
}
h1 {
font-size: 1.8em;
}
h2 {
font-size: 1.5em;
}
}