-
Notifications
You must be signed in to change notification settings - Fork 0
/
style3.css
85 lines (73 loc) · 1.25 KB
/
style3.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
.main{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
margin-top: 150px;
}
.full-boxer{
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
width: 100%;
}
.box-top{
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.comment-box:hover{
margin-top: 12px;
}
.comment-box{
width: 500px;
background: white;
padding: 20px;
margin: 15px;
border-radius: 8px;
cursor: pointer;
box-shadow: 3px 3px 25px rgba(0,0,0,0.3);
}
.Profile{
display: flex;
align-items: center;
}
.profile-image{
width: 70px;
height: 70px;
box-shadow: 2px 2px 30px rgba(0,0,0,0.3);
overflow: hidden;
border-radius: 50%;
margin-right: 10px;
}
.profile-image img{
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}
.Name{
display: flex;
flex-direction: column;
margin-left: 10px;
}
.Name strong{
color: black;
font-size: 18px;
}
.Name span{
color: gray;
margin-top: 2px;
}
.comment p{
color: black;
}