-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomment.css
More file actions
120 lines (119 loc) · 2.29 KB
/
Copy pathcomment.css
File metadata and controls
120 lines (119 loc) · 2.29 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
@import url("https://fonts.googleapis.com/css2?family=Roboto+Flex:wght@300;400;500&family=Roboto:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Two+Tone|Material+Icons+Round|Material+Icons+Sharp");
* {
font-family: "Roboto", sans-serif;
font-family: "Roboto Flex", sans-serif;
}
a {
text-decoration: none;
color: inherit;
}
.color-pink {
color: #ff2f6e;
}
.comment-poster_wrapper {
width: 70px;
height: 105px;
overflow: hidden;
border: 1px solid lightgray;
border-radius: 5px;
}
.comment-poster_wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
}
.profile-image-form {
width: 28px;
height: 28px;
border-radius: 14px;
border: 0.5px solid lightgray;
overflow: hidden;
}
.profile-image-form img {
width: 100%;
height: 100%;
object-fit: cover;
}
.comment-score {
width: 50px;
height: 24px;
border-radius: 12px;
border: 0.5px solid lightgray;
background-color: white;
text-align: center;
line-height: 24px;
}
.comment-content {
padding-top: 30px;
padding-bottom: 30px;
}
.vertical-line {
height: 15px;
width: 1px;
background-color: rgb(230, 230, 230);
}
.feature-btn a {
width: 100%;
height: 30px;
transition: all 0.1s linear;
}
.feature-btn a:hover {
background-color: #f2f2f2;
border-radius: 6px;
}
.btn-close {
width: 30px;
height: 30px;
background-color: #f2f2f2;
border-radius: 50%;
font-size: smaller;
}
.chat-input {
min-height: 150px;
}
.chat-input:focus {
outline: none;
}
.chat-submit_btn {
width: 100px;
height: 40px;
background-color: rgb(255, 47, 110);
color: white;
opacity: 0.5;
border-radius: 7px;
}
.chat-profile_form {
width: 32px;
height: 32px;
border-radius: 50%;
border: 0.5px solid lightgray;
overflow: hidden;
}
.chat-profile_form img {
width: 100%;
height: 100%;
object-fit: cover;
}
.chat-like_btn {
max-width: 60px;
height: 25px;
padding: 5px 1px;
border-radius: 5px;
transition: all 0.1s linear;
}
.chat-like_btn:hover {
background-color: #f2f2f2;
}
.font-15 {
font-size: 15px;
}
.font-14 {
font-size: 14px;
}
.font-13 {
font-size: 13px;
}
.font-12 {
font-size: 12px;
}