This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
# Oefening 15 | |
# Is een string een palindroom? https://nl.wikipedia.org/wiki/ | |
# Palindroom. Een string is een palindroom als het identiek is gelezen | |
# van links en rechts en van rechts naar links. Zo zijn “meetsysteem” en | |
# “stormrots” voorbeelden van palindromen. Schrijf een programma dat een | |
# string vraagt aan een gebruiker en een loop gebruikt om te bepalen of | |
# het woord al dan niet een palindroom is. Gebruik print om met een | |
# betekenisvol bericht eventueel te bevestigen of dat het geval is. | |
# Tip: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root {font-size: 62.5%;} | |
body { | |
margin-top: 10vh; | |
display: grid; | |
grid-template-columns: 1fr 60rem 1fr; | |
height: 80vh; | |
font-family: helvetica; | |
font-size: 2rem; | |
font-weight: 100;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p class="slecht">Slechte Karma: 0</p> | |
<main> | |
<div class="karmakaart"></div> | |
<p class="karmabingo">Karmabingo: 0</p> | |
</main> | |
<p class="goed">Goede Karma: 0</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
width: 80vh; | |
height: 80vh; | |
background-color: #00203f; | |
display: grid; | |
grid-gap: 0.9vw; | |
margin: 10vh auto; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="gekleurd"></div> | |
<div></div> | |
<div></div> | |
<div></div> | |
<div></div> | |
<div></div> | |
<div></div> | |
<div></div> | |
<div></div> | |
<div></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
main { | |
width: 825px; | |
height: 400px; | |
display: grid; | |
grid-template-columns: 1fr 1fr; | |
grid-gap: 25px; | |
margin: 100px auto 0 auto; | |
} | |
div { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<main> | |
<div></div> | |
<div></div> | |
</main> | |
<p>Zelfde kleur</p> | |
<p>Zelfde getal</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
background-color: #00203f; | |
} | |
main { | |
width: 600px; | |
height: 700px; | |
margin: 25px auto; | |
background-color: #0074D9; | |
padding-top: 80px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<main> | |
<div> | |
<div class="raam">0</div> | |
<div class="raam">0</div> | |
<div class="raam">0</div> | |
<div class="raam">0</div> | |
<div class="raam">0</div> | |
<div class="raam">0</div> | |
<div class="raam">0</div> | |
<div class="raam">0</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<header> | |
<div></div> | |
</header> | |
<nav> | |
<p>:-)</p> | |
</nav> | |
<main> | |
</main> |
NewerOlder