helialprofile.png
Welcome to IOPWiki, Commander.
We are lacking editors focused on Girls' Frontline and Girls' Frontline 2. You can contribute without an account. Learn how to contribute and join our Discord server.

Difference between revisions of "User:ReverseIdeology/common.css"

Welcome to IOP Wiki. This website is maintained by the Girls' Frontline community and is free to edit by anyone.
Jump to navigation Jump to search
Line 1: Line 1:
@media (min-width: 1366px) {
+
@media only screen and (min-width: 1366px) {
 
.variable-columns {
 
.variable-columns {
 
-ms-column-count: 3;
 
-ms-column-count: 3;
Line 8: Line 8:
 
}
 
}
  
@media (min-width: 800p) and (max-width: 1365px) {
+
@media only screen and (min-width: 800p) and (max-width: 1365px) {
 
.variable-columns {
 
.variable-columns {
 
-ms-column-count: 2;
 
-ms-column-count: 2;
Line 17: Line 17:
 
}
 
}
  
@media (max-width: 799px) {
+
@media only screen and (max-width: 799px) {
 
.variable-columns {
 
.variable-columns {
 
-ms-column-count: 1;
 
-ms-column-count: 1;

Revision as of 03:25, 22 September 2016

@media only screen and (min-width: 1366px) {
	.variable-columns {
		-ms-column-count: 3;
		-moz-column-count: 3;
		-webkit-column-count: 3;
		column-count: 3;
	}
}

@media only screen and (min-width: 800p) and (max-width: 1365px) {
	.variable-columns {
		-ms-column-count: 2;
		-moz-column-count: 2;
		-webkit-column-count: 2;
		column-count: 2;
	}
}

@media only screen and (max-width: 799px) {
	.variable-columns {
		-ms-column-count: 1;
		-moz-column-count: 1;
		-webkit-column-count: 1;
		column-count: 1;
	}
}