diff --git a/public/index.html b/public/index.html index 772e0dd..4844e79 100644 --- a/public/index.html +++ b/public/index.html @@ -4,7 +4,7 @@ mBank MT940 konwerter - + @@ -56,17 +56,20 @@ Fundację „Internet. Czas działać!” - i jest utrzymywana przez +
+ i jest utrzymywana przez Sealcode - . + • Kod źródłowy

- - Wykorzystuje czcionkę - Atkinson Hyperlegible - na licencji SIL Open Font License - +

+ + Wykorzystuje czcionkę + Atkinson Hyperlegible + na licencji SIL Open Font License + +

diff --git a/public/styles.css b/public/styles.css index 602bf2d..013ffa0 100644 --- a/public/styles.css +++ b/public/styles.css @@ -1,15 +1,30 @@ :root { --pico-font-family: "Atkinson Hyperlegible", sans-serif; + --icd-rentgen-color: #99ffdd; + --success-background-color: hsl(120, 100%, 85.1%); + --success-color: hsl(120, 100%, 7.1%); } section { max-width: 800px; margin: 0 auto; - padding: 0 1rem; } button { width: 100%; + font-weight: bold !important; + border: none; + box-shadow: none; +} + +#submit { + background-color: black; + color: var(--icd-rentgen-color); +} + +#submit:hover { + background-color: var(--icd-rentgen-color); + color: black; } .hidden { @@ -17,27 +32,45 @@ button { } .success { - background-color: hsl(120, 100%, 85.1%); + background-color: var(--success-background-color); + color: var(--success-color); padding: 2rem; margin: 1rem; font-size: 1.2rem; - color: hsl(120, 100%, 7.1%); } header, footer { max-width: unset !important; - background-color: var(--pico-modal-overlay-background-color); + background-color: black; +} + +header section h1, +footer section p { + color: white; +} + +footer section p a { + color: var(--icd-rentgen-color); +} + +body { + min-height: 100vh; + display: flex; + flex-direction: column; +} + +main { + flex: 1; } header section { - display: flex; - justify-content: space-between; - align-items: center; + text-align: center; + color: white; } #icd-logo { - height: 50px; + height: 48px; aspect-ratio: 1200/319; background-color: white; mask-image: url("logo.png"); @@ -55,5 +88,4 @@ figure#icd-logo-container { padding: 1rem; width: fit-content; margin: 0 auto 1em auto; - border-radius: var(--pico-border-radius); }