-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.css
More file actions
79 lines (67 loc) · 1.16 KB
/
Copy pathblog.css
File metadata and controls
79 lines (67 loc) · 1.16 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
.panel {
padding: 20px;
overflow-y: auto;
}
.blog-container {
max-width: 800px;
margin: 2rem auto;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
background: #fff;
transition: transform 0.3s ease;
}
.blog-header .blog-cover img {
width: 100%;
height: 250px;
object-fit: cover;
object-position: left;
display: block;
}
.blog-body {
padding: 1.5rem;
}
.blog-title h1 {
font-size: 1.8rem;
margin-bottom: 0.5rem;
line-height: 1.2;
}
.blog-title a {
text-decoration: none;
color: #222;
transition: color 0.2s ease;
}
.blog-title a:hover {
color: #00994f;
}
.blog-summary p {
font-size: 1rem;
color: #444;
line-height: 1.6;
}
.blog-body p a {
display: inline-block;
margin-top: 0.5rem;
color: #00994f;
font-weight: bold;
text-decoration: none;
transition: opacity 0.2s ease;
}
.blog-body p a:hover {
opacity: 0.7;
}
.footer {
padding: 1rem 1.5rem;
background-color: #f7f7f7;
font-size: 0.9rem;
color: #666;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.footer .languages {
font-style: italic;
}
/* .read-more {
outline: 1px solid black;
} */