-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
127 lines (106 loc) · 2.05 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
116
117
118
119
120
121
122
123
124
125
126
127
/* External CSS */
/* Style for body */
body {
background-color: #f0f0f0;
font-family: Arial, sans-serif;
color: #c00000; /* Fixed a typo: removed an extra '#' */
padding: 20px;
margin: 0;
}
/* Header */
header {
text-align: center;
padding: 20px;
}
h1 {
font-size: 2.5rem;
}
/* Main content */
main {
display: flex;
flex-direction: column;
align-items: center;
margin: 20px 0;
}
/* Section styling */
section {
width: 80%;
margin: 20px 0;
}
/* Headers */
h2, h3, h4 {
font-family: 'Georgia', serif;
color: #333;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h4 {
font-size: 1.25rem;
}
/* Blockquote */
blockquote {
font-style: italic; /* Italic text */
background-color: #f9f9f9; /* Light grey background for blockquote */
border-left: 5px solid #c00000; /* Red left border */
margin: 20px; /* Margin around blockquote */
padding: 15px; /* Padding inside blockquote */
}
/* Table */
table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}
table, th, td {
border: 1px solid #333;
}
th, td {
padding: 10px;
text-align: left;
}
/* Lists */
ul {
list-style-type: square;
padding-left: 20px;
}
ol {
padding-left: 20px; /* Added padding for ordered lists */
}
li {
margin: 5px 0;
}
/* Aside styling */
aside {
background-color: #e0e0e0;
padding: 10px;
border: 1px solid #333;
margin: 20px 0;
width: 80%; /* To match the main content width */
}
/* Gallery images */
img {
width: 100%; /* Responsive images */
height: auto; /* Maintain aspect ratio */
margin: 10px 0; /* Spacing between images */
}
/* Footer */
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 0;
position: relative; /* Changed to relative for better footer positioning */
bottom: 0;
width: 100%;
}
/* Additional styles for About Us page */
h2 {
margin-bottom: 10px; /* Space below the H2 headers */
}
ul {
margin: 10px 0; /* Space above and below unordered lists */
}