-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlog.css
More file actions
48 lines (40 loc) · 737 Bytes
/
Blog.css
File metadata and controls
48 lines (40 loc) · 737 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
47
48
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
}
header {
background-color: orange;
color: #fff;
padding: 15px;
text-align: center;
}
.container {
width: 80%;
margin: 20px auto;
}
.blog-post {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
overflow: hidden;
}
.blog-post img {
width: 100%;
height: auto;
}
.blog-content {
padding: 20px;
}
.blog-content h2 {
color: orange;
font-size: 28px;
font-weight: bold;
}
.blog-content p {
color: orange;
font-size: 16px;
font-weight: bold;
}