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
// class für Keycaps | |
.keycap { | |
display: inline-flex; | |
align-items: center; | |
justify-content: center; | |
min-width: 1.4em !important; /* Breite kann je nach Geschmack/für Doppelzeichen angepasst werden */ | |
height: 1.3em !important; /* Höhe bestimmt die Einheitlichkeit */ | |
border-radius: 0.2em !important; /* Wert für abgerundete Ecken (z. B. 0.5em bis 0.8em) */ | |
background: #c5cfed !important; /* Hintergrundfarbe */ | |
border: 2px solid #242424; /* Rahmenfarbe */ |
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
#---------------------------------------------------------- | |
# Title : Number Spirals Explorer | |
# Author : Stefan Wolfrum (@metawops) | |
# Date : June 2016 | |
# License: CC0 | |
#---------------------------------------------------------- | |
import ui | |
import math | |
import webbrowser |