-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimeline.css
91 lines (80 loc) · 1.6 KB
/
timeline.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
83
84
85
86
87
88
89
90
91
/* Timeline code */
.timeline {
border-left: 3px solid rgb(0, 0, 0);
align-self: self-start;
padding-left: 30px;
font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.container {
position: relative;
margin-bottom: 20px;
background-color: rgba(255, 255, 255, 0.5);
padding: 15px;
border-radius: 5px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease-in-out;
}
.container:hover {
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
transform: scale(1.05);
}
.img_div {
position: absolute;
left: -45px;
top: 0px;
z-index: 1;
}
.img_div img {
border-radius: 50%;
height: 25px;
width: 25px;
}
.arrow {
height: 5px;
width: 5px;
border-style: solid;
border-width: 7px;
border-color: transparent white transparent transparent;
position: absolute;
left: -13px;
top: 7px;
}
.content {
padding: 10px 10px;
background-color: white;
position: relative;
border-radius: 3px;
}
.content p {
font-size: 9px;
margin-top: 6px;
}
.content h5{
font-size:small;
}
.content .today_btn {
display: flex;
justify-content: space-between;
margin-top: 5px;
}
.content .today_info {
font-size: 9px;
margin-top: 6px;
display: block;
}
.content .today_info span {
font-size: 8px;
color: rgb(0, 206, 124);
font-weight: 600;
}
.content .more_btn button {
background-color: rgb(0, 206, 124);
color: white;
border: 0;
font-size: 9px;
padding: 5px;
border-radius: 3px;
cursor: pointer;
font-weight: 600;
}
/*# sourceMappingURL=timeline.css.map */