-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathmain.css
More file actions
120 lines (120 loc) · 2.15 KB
/
Copy pathmain.css
File metadata and controls
120 lines (120 loc) · 2.15 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
.bg-gray {
background-color: #f0f2f5;
}
.fs-0 {
font-size: 4rem;
}
.fs-7 {
font-size: 0.8rem;
}
/* nav button */
.nav__btn button:hover {
background: #f0f2f5 !important;
}
.nav__btn button:hover i {
color: #0d6efd !important;
}
.nav__btn-active i {
color: #0d6efd !important;
}
.nav__btn-active {
position: relative;
}
.nav__btn-active:before {
content: "";
position: absolute;
bottom: -4.5px;
left: 0;
transform: translate(0, 4.5px);
width: 100%;
height: 3px;
border-bottom: 3px solid #0d6efd !important;
}
/* dropdown */
.dropdown-item:active {
background-color: #d5d5d5 !important;
}
/* chat box */
.modal-content:hover .fa-phone-alt {
color: #0d6efd !important;
}
.modal-content:hover .fa-video {
color: #0d6efd !important;
}
.modal-content:hover .fa-file-image {
color: #0d6efd !important;
}
.modal-content:hover .fa-plus-circle {
color: #0d6efd !important;
}
.modal-content:hover .fa-portrait {
color: #0d6efd !important;
}
.modal-content:hover .fa-adjust {
color: #0d6efd !important;
}
.modal-content:hover .fa-thumbs-up {
color: #0d6efd !important;
}
/* edit */
.edit-button {
opacity: 0;
}
.edit-button:hover {
opacity: 1;
}
.edit-heading:hover .edit-button {
opacity: 1;
}
/* scrollbar */
.scrollbar:hover {
overflow: auto !important;
}
/* sponsor */
.sponsor-icon {
opacity: 0;
}
.dropdown-item:hover .sponsor-icon {
opacity: 1;
}
/* popover */
.pop-avatar {
width: 48px;
height: 48px;
object-fit: cover;
border-radius: 50%;
margin-right: 15px;
}
.chat-box {
border: 0 !important;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
/* stories */
.story:hover {
opacity: 0.8;
}
.pointer {
cursor: pointer;
}
/* comment */
.post__comment .accordion-button::after {
margin-left: 0 !important;
display: none !important;
}
.post__comment .accordion-button:hover {
background: transparent !important;
border-color: transparent !important;
}
.post__comment .accordion-button:not(.collapsed) {
background: transparent !important;
}
.post__comment .accordion-button:not(.collapsed) {
box-shadow: none !important;
}
@media (min-width: 62em) {
footer {
position: fixed;
bottom: 0;
width: 100%;
}
}