-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
199 lines (168 loc) · 3.79 KB
/
Copy pathstyle.css
File metadata and controls
199 lines (168 loc) · 3.79 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
/* General body styling */
body {
font-family: 'Arial', sans-serif;
color: #333;
background-color: #f8f9fa;
padding: 20px;
}
/* Header styling */
h1, h2, h3 {
color: #343a40;
margin-top: 20px;
margin-bottom: 10px;
font-weight: 700;
}
h1 {
font-size: 2.5em;
}
h2 {
font-size: 2em;
}
h3 {
font-size: 1.75em;
}
/* Paragraph styling */
p {
font-size: 1em;
line-height: 1.6;
margin-bottom: 20px;
}
/* Styling for links */
a {
color: #007bff;
text-decoration: none;
}
a:hover {
color: #0056b3;
text-decoration: underline;
}
/* Container styling */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background-color: #ffffff;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Custom Bootstrap class overrides */
.navbar {
background-color: #343a40;
}
.navbar-brand, .navbar-nav .nav-link {
color: #ffffff !important;
}
.navbar-brand:hover, .navbar-nav .nav-link:hover {
color: #d3d3d3 !important;
}
/* Footer styling */
footer {
margin-top: 40px;
padding: 20px 0;
text-align: center;
color: #6c757d;
border-top: 1px solid #dee2e6;
}
/* Additional padding for blog content */
.blog-content {
padding: 20px;
}
/* Subtle Highlight class styling - Light Yellow */
.highlight-yellow {
background-color: #fff3cd; /* Light yellow background */
font-weight: 500; /* Slightly bold */
padding: 2px 4px;
border-radius: 3px;
border-bottom: 2px solid #ffdb63; /* Slightly darker yellow */
}
/* Subtle Highlight class styling - Light Blue */
.highlight-blue {
background-color: #e0f7fa; /* Light blue background */
font-weight: 500; /* Slightly bold */
padding: 2px 4px;
border-radius: 3px;
border-bottom: 2px solid #b2ebf2; /* Slightly darker blue */
}
/* Subtle Highlight class styling - Light Green */
.highlight-green {
background-color: #d9fdd3; /* Light green background */
font-weight: 500; /* Slightly bold */
padding: 2px 4px;
border-radius: 3px;
border-bottom: 2px solid #b2f2a8; /* Slightly darker green */
}
/* Subtle Highlight class styling - Light Pink */
.highlight-pink {
background-color: #fde0e0; /* Light pink background */
font-weight: 500; /* Slightly bold */
padding: 2px 4px;
border-radius: 3px;
border-bottom: 2px solid #f8bebe; /* Slightly darker pink */
}
/* Subtle Highlight class styling - Light Purple */
.highlight-purple {
background-color: #f3e5f5; /* Light purple background */
font-weight: 500; /* Slightly bold */
padding: 2px 4px;
border-radius: 3px;
border-bottom: 2px solid #e1bee7; /* Slightly darker purple */
}
/* Subtle Highlight class styling - Light Grey */
.highlight-grey {
background-color: #f5f5f5; /* Light grey background */
font-weight: 500; /* Slightly bold */
padding: 2px 4px;
border-radius: 3px;
border-bottom: 2px solid #e0e0e0; /* Slightly darker grey */
}
/* Image styles */
/* Image container */
.image-container {
text-align: center; /* Center the image and caption */
margin-bottom: 20px; /* Add space below each image */
}
/* Image styles */
.image-container img {
display: block;
max-width: 100%;
height: auto;
margin: 0 auto; /* Center the image horizontally */
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Image caption styles */
.image-container figcaption {
margin-top: 8px; /* Space between image and caption */
font-style: italic;
color: #666;
font-size: 0.9rem;
}
/* Date and author section styling */
/* Subtle styling for blog info */
.blog-info {
font-size: 0.9em;
color: #999;
/* text-align: end; */
margin-top: 10px;
}
.blog-info p {
margin-bottom: 5px;
}
/* Media query for smaller screens */
@media (max-width: 768px) {
body {
padding: 5px;
}
.container {
padding: 5px;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.75em;
}
h3 {
font-size: 1.5em;
}
}