-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicard.css
73 lines (63 loc) · 1.16 KB
/
icard.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
:root {
font-family: "Nunito Sans", sans-serif;
}
body {
background-color: #f5f7f7;
}
.titlecontain {
border-left: 2px solid #bababa;
flex: 4;
position: relative;
left: 5%;
height: 44px;
display: flex;
align-items: center;
}
.title {
font-size: 25px;
position: relative;
left: 20px;
}
.icardcontain {
width: 75%;
display: flex;
flex-direction: column;
position: relative;
margin: auto;
justify-content: center;
align-items: center;
}
.icard {
background-color: white;
margin: auto;
width: 90%;
border-radius: 8px;
height: fit-content;
display: flex;
padding: 20px;
margin: 20px 0 20px 0;
align-items: center;
}
.icard:hover {
outline: solid rgb(55 112 255) 2px;
box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19);
cursor: pointer;
}
.posted {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
margin-left: auto;
flex: 1;
/* border: 2px solid; */
border-left: 2px solid #bababa;
}
.txt {
font-weight: bold;
font-size: 18px;
}
.postdate {
color: #808689;
font-size: 20px;
}