Template:Birthdays/style.css: Difference between revisions

From Blue Archive Wiki
Jump to navigation Jump to search
Content added Content deleted
(Created page with "→‎CharacterBirthdays: .character-birthdays { width: 100%; background-color: rgba(255,255,255,0.7); border-radius: 15px; margin: 10px; padding: 10px; } .character-birthdays img { margin: -45px 20px -20px 0; float: left; } .character-birthdays span::after { display: inline-block; width: 1em; height: 1em; content: "•"; color:#a2a9b1; text-align: center; }")
 
mNo edit summary
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CharacterBirthdays */
/* CharacterBirthdays */
.character-birthdays {
.character-birthdays {
width: 100%;
width: calc(100% - 20px);
background-color: rgba(255,255,255,0.7);
background-color: rgba(255,255,255,0.7);
border-radius: 15px;
border-radius: 10px;
margin: 10px;
margin: 10px;
padding: 10px;
padding: 10px 10px 10px 80px;
box-sizing: border-box;
text-align: center;
}
}


.character-birthdays img {
.character-birthdays img {
margin: -45px 20px -20px 0;
margin: -30px 0px -20px -80px;
float: left;
float: left;

}
}


.character-birthdays span::after {
.character-birthdays a::after {
display: inline-block;
display: inline-block;
width: 1em;
width: 1em;
Line 21: Line 22:
color:#a2a9b1;
color:#a2a9b1;
text-align: center;
text-align: center;
}

.character-birthdays a:last-child::after {
display: none;
}

@media (max-width: 425px) {
.character-birthdays a::after {
display: none;
}
}
}

Latest revision as of 06:14, 23 October 2023

/* CharacterBirthdays */
.character-birthdays {
    width: calc(100% - 20px);
    background-color: rgba(255,255,255,0.7);
    border-radius: 10px;
    margin: 10px;
	padding: 10px 10px 10px 80px;
    box-sizing: border-box;
    text-align: center;
}	

.character-birthdays img {
	margin: -30px 0px -20px -80px;
	float: left;
}

.character-birthdays a::after {
	display: inline-block;
	width: 1em;
	height: 1em;
	content: "•";
	color:#a2a9b1;
	text-align: center;
}

.character-birthdays a:last-child::after {
    display: none;
}

@media (max-width: 425px) {
	.character-birthdays a::after {
		display: none;
	}
}