Template:Birthdays/style.css: Difference between revisions

From Blue Archive Wiki
Jump to navigation Jump to search
Content added Content deleted
No edit summary
mNo edit summary
 
(5 intermediate revisions by the same user not shown)
Line 3: Line 3:
width: calc(100% - 20px);
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;
box-sizing: border-box;
text-align: center;
}
}


.character-birthdays img {
.character-birthdays img {
margin: -30px 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;
	}
}