-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimeline.scss
69 lines (66 loc) · 1.29 KB
/
timeline.scss
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
/* Timeline code */
.timeline {
border-left: 3px solid rgb(0, 0, 0);
align-self: self-start;
padding-left: 30px;
}
.container {
position: relative;
margin-bottom: 20px;
border: 1px solid rgb(0, 0, 0);
box-shadow: 2px 2px 8px blue;
}
.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 .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: 4px;
border-radius: 3px;
}