-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
53 lines (45 loc) · 796 Bytes
/
index.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
*{
padding: 0px;
margin: 0px;
}
body{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.cards{
width: 28%;
border-radius: 5px;
margin: 30px;
box-shadow: 2px 2px 10px black;
display: inline-block;
}
.image img{
width: 100%;
border-top-right-radius: 5px;
border-top-left-radius: 5px;
}
.title{
padding: 5px;
text-align: center;
}
h3{
color: brown;
}
.description{
text-align: center;
padding: 4px;
}
.read-btn{
display: inline-block;
text-decoration: none;
background: white;
color: orange;
width: 100%;
padding: 15px 0;
margin-top: 20px;
text-align: center;
border-radius: 5px;
background-color: beige;
}
.read-btn:hover{
background-color: aquamarine;
}