-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutility.css
109 lines (89 loc) · 1.61 KB
/
utility.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
97
98
99
100
101
102
103
104
105
106
107
108
109
.share-btn-container {
background: #fff;
display: flex;
flex-direction: column;
padding: 16px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
position: fixed;
top: 50%;
transform: translateY(-50%);
}
.share-btn-container a i {
font-size: 28px;
}
.share-btn-container a {
margin: 12px 0;
transition: 500ms;
}
.share-btn-container a:hover {
transform: scale(1.2);
}
.share-btn-container .fa-facebook {
color: #3b5998;
}
.share-btn-container .fa-twitter {
color: #1da1f2;
}
.share-btn-container .fa-linkedin {
color: #0077b5;
}
.share-btn-container .fa-pinterest {
color: #bd081c;
}
.share-btn-container .fa-whatsapp {
color: #25d366;
}
@media (max-width: 550px) {
.share-btn-container {
z-index: 1;
transform: unset;
top: unset;
left: 0;
bottom: 0;
width: 100%;
flex-direction: row;
box-shadow: 4px 0 8px rgba(0, 0, 0, 0.3);
padding: 16px 0;
justify-content: center;
}
.share-btn-container a {
margin: 0 32px;
}
}
/* Comment Section CSS */
.card-comment{
display: block;
margin: 20px 0;
padding: 5px;
}
.success{
color: white;
display: block;
background-color: green;
opacity: 0.4;
}
.error{
color: white;
display: block;
background-color:red;
opacity: 0.4;
}
#comment-set{
margin: 10px;
padding: 15px 0 15px 15px;
display: block;
border: 1px solid #f9f9f9;
}
.card-header{
background-color: #3b5998;
color: white !important;
}
.comment-btn{
background-color: #038c25;
}
.comment-btn:hover{
background-color: #3de467;
}
li{
list-style-type: none;
}