Difference between revisions of "User:Arumi/style.css"

From City of Hope MUSH
Jump to navigation Jump to search
Line 1: Line 1:
  
 
#bodyContent {
 
#bodyContent {
background: linear-gradient(315deg, #a52121 0%,#ffa5a5 67%,#fdff89 100%);
+
background: linear-gradient(0deg, #ffffff 0%, #000000 10%,#000000 90%,#ffffff 100%);
 
}
 
}
 
#arumi-wrapper h1, #arumi-wrapper h2 {
 
#arumi-wrapper h1, #arumi-wrapper h2 {
Line 8: Line 8:
 
}
 
}
 
#arumi-wrapper a, #arumi-wrapper a:hover, #arumi-wrapper a:visited {
 
#arumi-wrapper a, #arumi-wrapper a:hover, #arumi-wrapper a:visited {
color: #005050;
+
color: #ffff00;
 
}
 
}
#arumi-wrapper h3, #arumi-sidebar th {
+
#arumi-wrapper h3, #arumi-sidebar th, #arumi-sidebar h1, #arumi-sidebar h2 {
background: linear-gradient(to right, rgba(200, 30, 30, 0.1), rgba(200, 30, 30, 0.9));
+
background: linear-gradient(to right, rgba(255, 150, 150, 1), rgba(200, 30, 30, 1));
 
text-align: center;
 
text-align: center;
 
border: solid 1px white;
 
border: solid 1px white;
Line 25: Line 25:
 
justify-content: flex-start;
 
justify-content: flex-start;
 
max-width: 100%;
 
max-width: 100%;
padding: 10px;
+
padding: 10px;
 
}
 
}
 
#arumi-main {
 
#arumi-main {
background-color: rgba(220, 220, 220, 0.5);
 
 
padding: 5px;
 
padding: 5px;
box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.5);
+
color: #ffffff;
 +
text-shadow: 0px 0px 3px #000000;
 
}
 
}
 
#arumi-gallery p {
 
#arumi-gallery p {
Line 40: Line 40:
 
#arumi-sidebar {
 
#arumi-sidebar {
 
text-align: center;
 
text-align: center;
background-color: rgba(200, 200, 200, 0.5);
+
background-color: #ffffff;
box-shadow: 8px 8px 8px 0px rgba(0, 0, 0, 0.5);
 
 
min-width: 200px;
 
min-width: 200px;
}
+
padding: 5px;
#arumi-sidebar h1, #arumi-sidebar h2 {
 
background: linear-gradient(to right, rgba(200, 200, 30, 0.1), rgba(200, 200, 30, 0.4));
 
text-align: center;
 
border: solid 1px rgba(0, 0, 0, .2);
 
padding: 0;
 
margin: 5px 5px;
 
color: black;
 
 
}
 
}
 
#arumi-sidebar img[alt~="ArumiHanada-Red.jpg"] {
 
#arumi-sidebar img[alt~="ArumiHanada-Red.jpg"] {

Revision as of 11:21, 14 May 2020


#bodyContent {
	background: linear-gradient(0deg, #ffffff 0%, #000000 10%,#000000 90%,#ffffff 100%);
}
#arumi-wrapper h1, #arumi-wrapper h2 {
	text-align: center;
	border-bottom: none;
}
#arumi-wrapper a, #arumi-wrapper a:hover, #arumi-wrapper a:visited {
	color: #ffff00;
}
#arumi-wrapper h3, #arumi-sidebar th, #arumi-sidebar h1, #arumi-sidebar h2 {
	background: linear-gradient(to right, rgba(255, 150, 150, 1), rgba(200, 30, 30, 1));
	text-align: center;
	border: solid 1px white;
	padding-top: 0;
	color: white;
}
.mw-editsection {
	display: none;
}
#arumi-wrapper {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	max-width: 100%;
	padding: 10px;
}
#arumi-main {
	padding: 5px;
	color: #ffffff;
	text-shadow: 0px 0px 3px #000000;
}
#arumi-gallery p {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 100%;
}
#arumi-sidebar {
	text-align: center;
	background-color: #ffffff;
	min-width: 200px;
	padding: 5px;
}
#arumi-sidebar img[alt~="ArumiHanada-Red.jpg"] {
	width:100%;
	height: auto;
}
#arumi-sidebar table td {
	text-align: left;
}
#arumi-gallery img:hover {
	box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.5);
	transform: scale(2);
	transition-duration: 0.5s;
}

@media (max-width: 991px) {
	#arumi-main {
		font-size: 2.5em;
	}
	#arumi-sidebar {
		width: 100%;
		font-size: 2.5em;
	}
	#arumi-sidebar img[alt~="Dot.png"],
	#arumi-sidebar img[alt~="Dot-filled.png"] {
		width: 30px;
		height: 30px;
	}
	#arumi-wrapper {
		flex-direction: column-reverse;
		align-items: center;
	}
	#arumi-gallery p {
		flex-direction: column;
		align-items: center;
	}
	#arumi-sidebar img[alt="Sons of Ether.svg"] {
		max-width: 100%;
		height: auto;
	}
}
@media (min-width: 992px) {
	#arumi-wrapper {
		flex-direction: row;
		align-items: flex-start;
	}
	#arumi-main {
		flex-grow: 4;
		margin-right: 10px;
	}
	#arumi-sidebar {
		flex-grow: 1;
		max-width: 20%;
		margin-right: 10px;
	}
	#arumi-gallery {
		flex-direction: row;
		align-items: flex-start;
	}
	#arumi-sidebar img[alt="Sons of Ether.svg"] {
		max-width: 50%;
		height: auto;
		image-rendering: smooth;
	}
}