-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog_style.css
More file actions
46 lines (40 loc) · 855 Bytes
/
blog_style.css
File metadata and controls
46 lines (40 loc) · 855 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
/* styles.css */
body {
font-family: "Baskerville", "Georgia", serif;
color: #333; /* Default text color */
background-color: #954141; /* Light background */
margin: 0;
padding: 0;
}
h1, h2, h3, h4, h5, h6 {
color: #1a5f87; /* Header color */
}
a {
color: #7700b3; /* Link color */
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.back-to-home {
position: fixed;
top: 10px;
left: 10px;
background-color: #ffffff;
color: #3498db;
padding: 5px 10px;
border-radius: 5px;
border: 1px solid #ccc;
text-decoration: none;
}
.back-to-home:hover {
background-color: #3498db;
color: #ffffff;
}
.content {
max-width: 800px;
margin: 50px auto; /* Center content */
padding: 20px;
background: #ffffff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}