mapcomplete/css/wikipedia.css

41 lines
798 B
CSS
Raw Normal View History

2021-10-02 17:57:54 +02:00
/* This stylesheet reimplements a few classes from wikipedia to show their articles prettily */
.wikipedia-article {
2021-10-02 22:31:16 +02:00
font-family: sans-serif !important;
2021-10-02 17:57:54 +02:00
}
.wikipedia-article .tright {
float: right;
clear: right;
}
.wikipedia-article svg, .wikipedia-article img {
2021-10-02 22:31:16 +02:00
width: unset;
height: unset;
display: unset;
}
2021-10-02 17:57:54 +02:00
.wikipedia-article .thumb {
background: var(--subtle-detail-color);
margin: 1rem;
padding: 0.5rem;
border: 1px solid var(--subtle-detail-color-light-contrast);
border-radius: 0.5rem;
}
2021-10-02 22:31:16 +02:00
.wikipedia-article a:hover a:focus {
text-decoration: underline !important;
2021-10-02 17:57:54 +02:00
}
2021-10-02 22:31:16 +02:00
.wikipedia-article a {
color: #0645ad !important;
background: none !important;
text-decoration: none;
2021-10-02 17:57:54 +02:00
}
2021-10-02 22:31:16 +02:00
2021-10-02 17:57:54 +02:00
.wikipedia-article p {
margin-bottom: 0.5rem;
}