-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
72 lines (59 loc) · 1.15 KB
/
styles.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
/* css styles */
p {
text-align: justify;
}
.share-on-section {
background: #fff;
display: flex;
flex-direction: row;
padding: 10px 0;
/*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
right: 50%;
position: relative;
/*transform: translateX(-50%);*/
}
.share-on-section a i {
font-size: 32px;
}
.share-on-section a {
margin: 12px 0;
transition: 500ms;
}
/*.share-on-section a:hover {
transform: scale(1.2);
}*/
.share-on-section .fa-facebook {
color: #3b5998;
}
.share-on-section .fa-twitter {
color: #1da1f2;
}
.share-on-section .fa-linkedin {
color: #0077b5;
}
.share-on-section .fa-pinterest {
color: #bd081c;
}
.share-on-section .fa-whatsapp {
color: #25d366;
}
/* Media Queries */
@media (max-width: 1000px) {
.content {
padding: 10px;
}
.share-on-section {
/*left: 50%;
top: unset;
box-shadow: 4px 0 8px rgba(0, 0, 0, 0.3);
transform: translateX(-50%);*/
width: 50%;
bottom: 0;
flex-direction: row;
padding: 10px 0;
justify-content: center;
}
.share-on-section a {
margin: 10px 10px;
}
}