MediaWiki:Common.css
MediaWiki interface page
More actions
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
.hb-grid {
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
margin:30px 0;
}
.hb-tile {
border-radius:24px;
padding:25px;
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
transition:0.2s;
}
.hb-tile:hover {
transform:translateY(-3px);
}
.hb-tile h3 {
margin-top:10px;
color:#2E78B7;
}
.hb-geschiedenis {
border-top:5px solid #2E78B7;
}
.hb-cultuur {
border-top:5px solid #55A7DE;
}
.hb-natuur {
border-top:5px solid #A9CF38;
}
.hb-maatschappij {
border-top:5px solid #235E8F;
}
.hb-recreatie {
border-top:5px solid #5AA99D;
}
.hb-bezienswaardigheden {
border-top:5px solid #82C65B;
}
.hb-hero {
background:#F7F7F7;
border-radius:40px;
padding:40px;
text-align:center;
margin-bottom:30px;
}
.hb-snel {
background:#EAF3F8;
border-radius:20px;
padding:20px;
}
`