-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathnews.css
53 lines (40 loc) · 1.03 KB
/
news.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
@import url('https://fonts.googleapis.com/css?family=Fondamento&display=swap');
body {
padding: 0;
border: 0;
background-image: linear-gradient(red,yellow,orange );
}
.single-blog {
background-image: radial-gradient( circle 513px at 52.1% 52.6%, rgba(240,241,163,1) 0%, rgba(236,135,135,1) 90% );
box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.2);
padding: 10px;
margin-top: 30px;
}
.single-blog img {
width: 100%;
object-fit: cover;
height: 300px;
}
.blog-meta {
font-size: 14px;
margin-bottom: 2px;
font-weight: 500;
}
.single-blog span {
float: right;
font-size: 12px;
color: black;
}
.blog-text {
font-size: 20px;
text-align: center;
font-family: 'Fondamento', cursive;
}
.name_link {
text-decoration: none;
color: #28425c;
}
.name_link:hover {
text-decoration: none;
color: #28425c;
}