-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfloat.css
More file actions
75 lines (75 loc) · 1.65 KB
/
float.css
File metadata and controls
75 lines (75 loc) · 1.65 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
.wrapper {
max-width: 1550px;
width: 100%;
margin-left: auto;
margin-right: auto;
}
article {
float: left;
width: 62%;
margin-right: 10px;
position: relative;
}
#social-side-links {
position: fixed;
display: block;
margin-left: -3em;
}
#social-side-links a:first-child{
margin-top: 0;
}
#social-side-links a .social-square {
min-width: 33px;
min-height: 33px;
}
#social-side-links a .social-square i {
padding-top: 7px;
}
#social-mobile-links {
display: none;
}
#social-mobile-links a .social-square {
width: 25%;
padding: 10px 0;
float: left;
}
#social-mobile-links a,
#social-side-links a {
color: #fff;
text-align: center;
font-style: 2.2rem;
}
#social-side-links a .social-square.facebook,
#social-mobile-links a .social-square.facebook {
background: #3b5998;
}
#social-side-links a .social-square.twitter,
#social-mobile-links a .social-square.twitter {
background: #00abec;
}
#social-side-links a .social-square.google,
#social-mobile-links a .social-square.google {
background: #dd4b39;
}
#social-side-links a .social-square.linkedin,
#social-mobile-links a .social-square.linkedin {
background: #0077b5;
}
#social-side-links a .social-square:hover,
#social-mobile-links a .social-square:hover {
opacity: .7;
-webkit-transition: all 0.1s ease-in-out;
-moz-transition: all 0.1s ease-in-out;
-ms-transition: all 0.1s ease-in-out;
-o-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out;
}
@media only screen and (max-width: 1048px) {
#social-side-links {
display: none !important;
}
#social-mobile-links {
display: block;
position: relative;
}
}