Vakanties
Wanneer heb jij vakantie dit schooljaar? Bekijk het hieronder.
Schoolvakanties 2025/2026
Zomervakantie: Maandag 20 juli t/m vrijdag 28 augustus 2026
Schoolvakanties 2026/2027
Herfstvakantie: Maandag 19 oktober t/m vrijdag 23 oktober 2026
Kerstvakantie: Maandag 21 december 2026 t/m vrijdag 1 januari 2027
Voorjaarsvakantie: Maandag 22 februari t/m vrijdag 26 februari 2027
Goede vrijdag en Paasmaandag: Vrijdag 26 maart t/m maandag 29 maart 2027
Meivakantie: Maandag 26 april t/m vrijdag 7 mei 2027
Hemelvaartsdag: Donderdag 6 mei 2027
Pinksteren: Maandag 17 mei 2027
Zomervakantie: Maandag 19 juli t/m vrijdag 27 augustus 2027
.button-container {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
margin-bottom: 30px;
}
.square-button {
display: inline-flex;
align-items: center;
justify-content: center;
width: 270px;
height: 200px;
background-color: #00afa5;
color: white;
text-align: center;
font-size: 19px;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
text-transform: uppercase;
font-weight: bold;
padding: 10px;
box-sizing: border-box;
}
.square-button:hover {
background: linear-gradient(135deg, #116F99 0%, #00AFA5 50%, #8CC33F 100%);
color: #f0f0f0;
transform: scale(1.1);
box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}
/* Mobiel: onder elkaar en kleiner */
@media (max-width: 600px) {
.button-container {
flex-direction: column;
align-items: center;
}
.square-button {
width: 90%;
height: 150px;
font-size: 17px;
}
}