-
Notifications
You must be signed in to change notification settings - Fork 0
/
card.css
82 lines (69 loc) · 1.24 KB
/
card.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
.parent-div{
background-color:#fafaf9;
height: 900px;
width: 1280px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.card-body{
background-color:white;
width: 336px;
height: 420px;
border-radius: 16px;
border: 16px solid white;
box-shadow: 10px 3px 22px -10px rgba(0,0,0,0.85);
-webkit-box-shadow: 10px 3px 22px -10px rgba(0,0,0,0.85);
-moz-box-shadow: 10px 3px 22px -10px rgba(0,0,0,0.85);
}
.card-body img{
width: 336px;
height: 210px;
border-radius: 16px;
}
div:nth-child(2){
color: #ad78ec;
font-family: roboto,arial;
font-weight: bold;
font-size: 10px;
display: block;
width: 42px;
height: 10px;
padding: 4px 4px 4px 8px;
border-radius: 20px;
margin-top:16px;
margin-left: 4px;
background-color: #e6d6fc
}
.bracing{
padding-top: 16px;
font-family: roboto,arial;
font-weight: bold;
display:block;
}
.second,.third{
color: #b1b5bb;
padding-top: 6px;
font-size: small;;
}
.third{
color: #b1b5bb;
font-family: roboto,arial;
padding-top:0px;
font-size: small;
}
.forth{
color: #b1b5bb;
font-family: roboto,arial;
padding-top:0px;
font-size: small;
}
hr{
margin-top: 20px;
}
.author{
margin-top: 20px;
font-size: 13px;
color: #b1b5bb;
}