-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmobile.css
96 lines (83 loc) · 1.55 KB
/
mobile.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
92
93
94
95
96
.container{
display: flex;
flex-direction: column;
align-items: center;
background-color: #ECF2F8;
max-width: 375px;
width: 100%;
height: 100%;
position: absolute;
}
.box1{
margin: 2em 2em;
display: block;
width: 75%;
align-items: center;
height: 100%;
}
#image img{
float: left;
display: flex;
position: relative;
width: 100%;
height: 65%;
left: 0;
border-radius: 4%;
padding-right: 3em;
padding-bottom: 1.5em;
}
#head{
color: #4E5765;
padding: 0.8rem 0.5rem ;
font-size: 13px;
font-weight: 700;
}
#para{
font-size: 12px;
font-weight: 500;
color: #6D7F97;
line-height: 1.7;
padding: 1rem 0.6rem;
}
#michelle img{
padding: 2rem 0.3rem;
height: 2rem;
width: 2rem;
border-radius: 50%;
}
#name{
display: flex;
position: relative;
font-size: 0.7rem;
color: #4E5765;
left: 3.5rem;
bottom: 4.2rem;
font-weight: 700;
font-family: 'Manrope', sans-serif;
}
#date{
display: flex;
position: relative;
font-size: 0.7rem;
left: 3.5rem;
bottom: 4rem;
font-weight: 500;
font-family: 'Manrope', sans-serif;
color: #6D7F97;
}
.tooltip {
position: relative;
display: inline;
left: 13rem;
bottom: 8rem;
color: #6D7F97;
}
.tooltip .tooltiptext {
width: 220px;
top: 100%;
left: 20%;
margin-left: -110px;
}
.tooltip:hover{
visibility:visible ;
}