-
Notifications
You must be signed in to change notification settings - Fork 55
/
blog.css
61 lines (53 loc) · 997 Bytes
/
blog.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
54
55
56
57
58
59
60
61
.card-container{
}
.card{
display: inline-block;
margin: 3rem;
background-color: rgb(192 196 255);
border-radius: 1rem;
box-shadow: rgb(158, 153, 153) 2px 2px 13px;
}
.imgs{
height: 100%;
width: 100%;
background-position: cover;
}
.heading{
text-align: center;
background-color: rgb(194 156 215);
margin: 0;
padding: 0;
}
.author{
text-align: center;
text-transform: capitalize;
background-color: rgb(219 208 224);
margin: 0;
padding: 0;
}
.read{
padding: 0.2rem;
margin: 2rem;
justify-content: center;
place-items: center;
text-align: center;
outline: none;
border: none;
position: relative;
left: 2.5rem;
border-radius: 7px;
background-color: blue;
color: white;
box-shadow: 2px 2px 13px rgb(141, 132, 132);
}
.card:hover{
transition: 0.2s;
transform: scale(1.02);
}
.read:hover{
transform: scale(0.9);
transition: 0.3s;
}
ul.menu{
margin-bottom: 0px;
}