Raft Wiki
Advertisement

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Microsoft Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Clear the cache in Tools → Preferences
#skinchange-button {
	text-align: center;
	margin: 0.5em;
	overflow: hidden;
	cursor: pointer;
	line-height: 1;
	display: flex;
	justify-content: center;
	box-shadow: 0 0 1em black;
	height: 40px;
}

.skin-hydradark #skinchange-button:hover .skinchange-button-dark {
	margin-left: calc(-2em - 100%);
}

.skin-hydra #skinchange-button:hover .skinchange-button-light {
	margin-right: calc(-2em - 100%);
}

.skinchange-button-dark,
.skinchange-button-light {
	transform: skew(-20deg);
	flex-grow: 1;
	padding: 0.25em 0;
	overflow: hidden;
	transition: 0.5s;
    opacity: 1;
    color: transparent;
}

.skinchange-button-dark {
    background-color: #222;
	margin: 0 0 0 -5%;
}

.skinchange-button-light {
	background-color: #DDD;
	margin: 0 -5% 0 0;
}

.skin-hydradark .skinchange-button-light {
    background-color: #DDD;
}

.skinchange-button-dark::before,
.skinchange-button-light::before {
	font-size: 2em;
	transform: skew(20deg);
	display: inline-block;
	width: 32px;
}

#skinchange-popup {
	background-color: #FAFAFA;
	box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
	z-index: 100;
	left: 160px;
	top: 210px;
	width: 20vw;
	max-width:500px;
	position: absolute;
}

@media (max-width:720px){
	#skinchange-popup {
	left:0;
	width:100%;
	float:center;
} 
} 


.skinchange-header {

} 

.skinchange-choice-outer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.skinchange-choice {
	height: 128px;
	width: 64px;
	padding: 0.5em;
	line-height: 1;
	text-align: center;
	font-size: 10vmin;
	/*cursor: pointer;*/
}

#skinchange-x {
	/*position: absolute;*/
	top: 0;
	right: 0;
	float: right;
	height: 1em;
	width: 1em;
	line-height: 1;
	text-align: center;
	cursor: pointer;
}

#skinchange-dark, #skinchange-light {
	cursor: pointer;
}

#skinchange-dark {
	background: url(https://static.wikia.nocookie.net/raft_gamepedia_en/images/c/cf/SkinToggle-Moon.png/revision/latest) center no-repeat;

}
#skinchange-light {
	background: url(https://static.wikia.nocookie.net/raft_gamepedia_en/images/1/15/SkinToggle-Sun.png/revision/latest) center no-repeat;
}

.headerbar {
	background: -webkit-radial-gradient(center,ellipse cover,rgba(181,153,99,1) 0%,rgba(144,114,69,1) 100%);
	/*cursor:move;*/
	color: #FFF;
	font-size: 1.5em;
}
Advertisement