| Server IP : 217.160.0.15 / Your IP : 216.73.217.51 Web Server : Apache System : Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux User : u37981780 ( 1696858) PHP Version : 8.2.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/43/d124547881/htdocs/app395378437/wp-content/themes/cubic/ |
Upload File : |
/*
Theme Name: Cubic
Adding support for language written in a Right To Left (RTL) direction is easy -
it's just a matter of overwriting all the horizontal positioning attributes
of your CSS stylesheet in a separate stylesheet file named rtl.css.
http://codex.wordpress.org/Right_to_Left_Language_Support
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Pagination
2.0 Responsive
2.1 x <= 568px
2.2 x <= 1024px
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 Pagination
--------------------------------------------------------------*/
.paging-navigation .nav-next,
.paging-navigation .nav-previous {
float: left;
}
/*--------------------------------------------------------------
2.0 Responsive
--------------------------------------------------------------*/
/*--------------------------------------------------------------
2.1 x <= 568px
--------------------------------------------------------------*/
@media screen and (min-width: 568px) {
/* Content */
.archive .hentry,
.blog .hentry,
.search-results .hentry {
float: right;
}
.archive .hentry:nth-of-type(2n+3),
.blog .hentry:nth-of-type(2n+3),
.search-results .hentry:nth-of-type(2n+3) {
clear: right;
}
}
/*--------------------------------------------------------------
2.2 x <= 1024px
--------------------------------------------------------------*/
@media screen and (min-width: 1024px) {
/* Content */
.archive .hentry:nth-of-type(2n+3),
.blog .hentry:nth-of-type(2n+3),
.search-results .hentry:nth-of-type(2n+3) {
clear: none;
}
.archive .hentry:nth-of-type(3n+4),
.blog .hentry:nth-of-type(3n+4),
.search-results .hentry:nth-of-type(3n+4) {
clear: right;
}
}