The Division Wiki

READ MORE

The Division Wiki
(fplink styles)
(Fixed fplink styles)
Line 145: Line 145:
   
 
.fplink a {
 
.fplink a {
color:#000;
+
color:#000 !important;
 
}
 
}
   
Line 155: Line 155:
 
justify-content: center;
 
justify-content: center;
 
background: #efefef;
 
background: #efefef;
background-image: -moz-linear-gradient(center top, #efefef 0%, #c0c0c0 100%);
+
background-image: -moz-linear-gradient(center top, #ff6a13 0%, #CC5510 100%);
background-image: -webkit-gradient(linear, center top, left bottom, color-stop(0%,#efefef), color-stop(100%,#c0c0c0));
+
background-image: -webkit-gradient(linear, center top, left bottom, color-stop(0%,#ff6a13), color-stop(100%,#CC5510));
background-image: -webkit-linear-gradient(top, #efefef 0%, #c0c0c0 100%);
+
background-image: -webkit-linear-gradient(top, #ff6a13 0%, #CC5510 100%);
background-image: -o-linear-gradient(top, #efefef 0%, #c0c0c0 100%);
+
background-image: -o-linear-gradient(top, #ff6a13 0%, #CC5510 100%);
background-image: -ms-linear-gradient(top, #efefef 0%, #c0c0c0 100%);
+
background-image: -ms-linear-gradient(top, #ff6a13 0%, #CC5510 100%);
 
background-image: linear-gradient(to bottom, #ff6a13 0%, #CC5510 100%);
 
background-image: linear-gradient(to bottom, #ff6a13 0%, #CC5510 100%);
 
border: 1px solid #000;
 
border: 1px solid #000;

Revision as of 23:55, 10 June 2018

/* CSS placed here will affect users of the all skins */

/********************
/* Main page styles *
/********************/

.main-page-flex-layout {
	display: flex;
	margin-right: -1em;
	margin-bottom: -1em;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -ms-flex;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.main-page-flex-layout > div {
	background: rgba(0,0,0,.7);
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-right: 1em;
	margin-bottom: 1em;
	padding: 1em;
	-ms-flex: 1 1 auto;
	-webkit-flex: flex: 1 1 auto;
	flex: 1 1 auto;
}

.main-page-flex-layout h2 {
	border: none;
	font-family: 'Electrolize',sans-serif;
	text-transform: uppercase;
	text-align: inherit;
}

.main-page-flex-layout #main-page-welcome {
	text-align: center;
}

.main-page-flex-layout .main-page-spacer {
	display: none;
}

@media screen and (min-width: 1601px) {
	.main-page-flex-layout #main-page-welcome,
	.main-page-flex-layout #main-page-news,
	.main-page-flex-layout #main-page-wiki-community {
		-ms-flex: 0 0 25%;
		-webkit-flex: 0 0 25%;
		flex: 0 0 25%;
	}
	
	.main-page-flex-layout #main-page-videos,
	.main-page-flex-layout #main-page-twitter {
		-ms-flex: 0 0 auto;
		-webkit-flex: 0 0 auto;
		flex: 0 0 auto;
	}
	
	.main-page-flex-layout #main-page-welcome {
		order: 1;
	}
	
	.main-page-flex-layout #main-page-about {
		-ms-flex: 1 1 calc(50% - 3em);
		-webkit-flex: 1 1 calc(50% - 3em);
		flex: 1 1 calc(50% - 3em);
		order: 2;
	}
	
	.main-page-flex-layout #main-page-news {
		order: 3;
	}
	
	.main-page-flex-layout #main-page-armory {
		-ms-flex: 0 0 calc(20% - 1em);
		-webkit-flex: 0 0 calc(20% - 1em);
		flex: 0 0 calc(20% - 1em);
		order: 4;
	}
	
	.main-page-flex-layout #main-page-the-city {
		-ms-flex: 0 0 calc(20% - 1em);
		-webkit-flex: 0 0 calc(20% - 1em);
		flex: 0 0 calc(20% - 1em);
		order: 5;
	}
	
	.main-page-flex-layout #main-page-universe {
		-ms-flex: 0 0 calc(20% - 1em);
		-webkit-flex: 0 0 calc(20% - 1em);
		flex: 0 0 calc(20% - 1em);
		order: 6;
	}
	
	.main-page-flex-layout #main-page-wiki-community {
		-ms-flex: 1 0 calc(40% - 1em);
		-webkit-flex: 1 0 calc(40% - 1em);
		flex: 1 0 calc(40% - 1em);
		order: 7;
	}
	
	.main-page-flex-layout #main-page-videos {
		order: 8;
	}
	
	.main-page-flex-layout .main-page-spacer:nth-of-type(odd) {
		display: block;
		order: 9;
	}
	
	.main-page-flex-layout #main-page-twitter {
		order: 10;
	}
}

@media screen and (min-width: 1801px) {
	.main-page-flex-layout .main-page-spacer:nth-of-type(even) {
		display: block;
		order: 9;
	}
}

.fplinks .linkslabel {
    background: rgba(0, 0, 0, 0);
    border-bottom: 2px solid #505050;
    margin: 15px 5px 5px 5px;
    padding: 0 0 5px 0;
}

.fplink {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    box-sizing: border-box;
    padding: 1px 5px;
}

.fplink a {
  color:#000 !important;
}

.fplink .box {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    text-align:center;
    justify-content: center;
    background: #efefef; 
    background-image: -moz-linear-gradient(center top, #ff6a13 0%, #CC5510 100%); 
    background-image: -webkit-gradient(linear, center top, left bottom, color-stop(0%,#ff6a13), color-stop(100%,#CC5510)); 
    background-image: -webkit-linear-gradient(top, #ff6a13 0%, #CC5510 100%); 
    background-image: -o-linear-gradient(top, #ff6a13 0%, #CC5510 100%); 
    background-image: -ms-linear-gradient(top, #ff6a13 0%, #CC5510 100%); 
    background-image: linear-gradient(to bottom, #ff6a13 0%, #CC5510 100%); 
    border: 1px solid #000;
    border-radius: 4px;
    color: #000000;
    width: 100%;
    font-weight: bold;
    padding:3px;
}

#fptopsection .fplink.image,
#fpflexsection .fplink.image,
#fpbottomsection .fplink.image {
    height: 114px;
    width: 114px;
}

.fplink.image .box {
    width: 100px;
}

.fplink.image .image a {
  width: 100px;
  height: 100px;
  line-height: 100px;
}

.fplink.image .box .image img {
    max-height: 100px;
    height: auto;
    width: 100px;
}

@media (min-width: 470px) {
  .fplink {
    width: 50%;
  }

  .fplink.wide {
    width: 100%;
  }
}

@media (min-width: 580px) {
  .fplink {
    width: 33.333%;
  }

  .fplink.wide {
    width: 66.666%;
  }
}

@media (min-width: 690px) {
  .fplink {
    width: 25%;
  }

  .fplink.wide {
    width: 50%;
  }
}

@media (min-width: 800px) {
  .fplink {
    width: 20%;
  }

  .fplink.wide {
    width: 30%;
  }
}

@media (min-width: 910px) {
  .fplink {
    width: 16.666%;
  }

  .fplink.wide {
    width: 30%;
  }
}