Stampa:Artikuj të rinj/styles.css

Nga Wikipedia, enciklopedia e lirë
/* Adjust padding */
.mp-card-new-articles {
	padding-right: 0.5rem;
}

/* Break list into 2 columns */
.mp-card-new-articles ul {
	column-count: 2;
	column-gap: 2rem;
}

/* Set a minimum width for the columns */
.mp-card-new-articles li {
    min-width: 10rem;
}

/* Hide unnecesary information */
.mw-changeslist-date,
.mw-newpages-history,
.mw-newpages-edit,
.mw-newpages-length,
.mw-usertoollinks,
.mw-tag-markers,
.mw-newpages-oldtitle,
.comment {
	display: none;
}

/* Style date headers */
.mw-index-pager-list-header {
	font-style: italic;
	margin: 0.5rem 0;
}

/* Make article's creator smaller */
.mw-userlink {
	font-size: 95%;
}

/* Make article's title bold */
.mw-newpages-pagename {
	font-weight: bold;
}

/* Article Wizard Section */
.mp-NIA {
    /* Center-align article wizard section */
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 15px;
}

/* Mobile size specific styles */
@media (max-width: 600px) {
	
	/* Disable list breaking in mobile view */
	.mp-card-new-articles ul {
		column-count: 1;
		column-gap: 0;
	}
	
	/* Make user icons smaller and closer to user names */
	.mw-userlink::before {
		margin-right: 1px;
		background-size: 1em;
	}

	.mw-userlink::before,
	.mw-userlink {
		display: inline-block;
	}
	
	/* Change font size of article wizard section */
	.mp-NIA {
    	font-size: 12px;
	}
}