Template:Birthdays/style.css: Difference between revisions

From Blue Archive Wiki
Jump to navigation Jump to search
Content added Content deleted
mNo edit summary
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 15: Line 15:
}
}


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

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


@media (max-width: 425px) {
@media (max-width: 425px) {
.character-birthdays span::after {
.character-birthdays a::after {
display: none;
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;
	}
}