-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbuttons.css
More file actions
94 lines (87 loc) · 2.01 KB
/
buttons.css
File metadata and controls
94 lines (87 loc) · 2.01 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
* {
margin: 0;
padding: 0;
color: inherit;
box-sizing: inherit; }
*:focus {
outline: none; }
.social-buttons {
height: 50px;
margin: auto;
font-size: 0;
text-align: center;
position: absolute;
float: right;
bottom: 30px;
min-width: 240px;
right: 50px; }
.social-button {
display: inline-block;
background-color: #fff;
width: 50px;
height: 50px;
line-height: 50px;
margin: 0 10px;
text-align: center;
position: relative;
overflow: hidden;
opacity: .99;
border-radius: 28%;
box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59); }
.social-button:before {
content: '';
background-color: #000;
width: 120%;
height: 120%;
position: absolute;
top: 90%;
left: -110%;
transform: rotate(45deg);
transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59); }
.social-button .fa {
font-size: 38px;
vertical-align: middle;
transform: scale(0.8);
transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59); }
.social-button.facebook:before {
background-color: #3B5998; }
.social-button.facebook .fa {
color: #3B5998; }
.social-button.twitter:before {
background-color: #3CF; }
.social-button.twitter .fa {
color: #3CF; }
.social-button.instagram:before {
background-color: #3f729b; }
.social-button.instagram .fa {
color: #3f729b; }
.social-button.medium:before {
background-color: #000000; }
.social-button.medium .fa {
color: #000000; }
.social-button:hover:before {
top: -10%;
left: -10%; }
.social-button:hover .fa {
color: #fff;
transform: scale(1); }
.social-button:focus {
opacity: .85; }
.back-button {
background: none;
border: none;
color: rgb(39, 113, 162);
font-size: 24px;
cursor: pointer;
padding: 0;
margin: 0;
transition: color 0.3s;
}
.back-button:hover {
color: #4CAF50;
}
.back-button:active {
color: #427b43;
}
/*# sourceMappingURL=buttons.css.map */