ie.css
748 Bytes
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
/*
Theme Name: Twenty Sixteen
Description: Global Styles for older IE versions (previous to IE10).
*/
.site-header-main:before,
.site-header-main:after,
.site-footer:before,
.site-footer:after {
content: "";
display: table;
}
.site-header-main:after,
.site-footer:after {
clear: both;
}
@media screen and (min-width: 56.875em) {
.site-branding,
.site-info {
float: left;
}
.site-header-menu,
.site-footer .social-navigation {
float: right;
}
.site-footer .social-navigation {
margin-left: 7px;
}
.rtl .site-branding,
.rtl .site-info {
float: right;
}
.rtl .site-header-menu,
.rtl .site-footer .social-navigation {
float: left;
}
.rtl .site-footer .social-navigation {
margin-right: 7px;
margin-left: 0;
}
}