diff options
author | Rasmus Luha <rasmus.luha@gmail.com> | 2023-01-02 00:20:24 +0200 |
---|---|---|
committer | Rasmus Luha <rasmus.luha@gmail.com> | 2023-01-02 00:20:24 +0200 |
commit | ab1b5e77141ed402b41b16346254d512b458767c (patch) | |
tree | 5d8aaa6bbaa2217d7d74d56b74631e087c21343b /rannak/endPage/style.css | |
parent | 6a9499cea7df279407f61c55d1aa18bc23ff1869 (diff) |
endPage and some starter localStorage
Diffstat (limited to 'rannak/endPage/style.css')
-rw-r--r-- | rannak/endPage/style.css | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/rannak/endPage/style.css b/rannak/endPage/style.css new file mode 100644 index 0000000..0132b61 --- /dev/null +++ b/rannak/endPage/style.css @@ -0,0 +1,57 @@ +@font-face { + font-family: 'fontUno'; + src: url('fonts/fontUno/Monoton-Regular.ttf'); +} + +@font-face { + font-family: 'fontDos'; + src: url('fonts/fontDos/PressStart2P-Regular.ttf'); +} + + + +body { + padding: 0; + margin: 0; + box-sixing: border-box; + background-image: url("img/tres.png"); + background-size:100%; +} + +.wrapper { + display: flex; + justify-content: center; + align-items: center; + width: 100%; + height: 100vh; + text-align: center; +} + +.innerDiv { + padding: 15px; + margin-left: 20%; + width: 45%; + color: black; +} + +h1 { + color: rgba(0,136,169,1); + font-family:'fontUno'; +} +p {font-family:'fontDos';} + +button { + background-color: rgba(0,136,169,1); + border-radius: 50px; + padding: 15px; + border: none; + cursor: pointer; + text-decoration: none; + font-size: 1.3rem; + font-family:'fontDos'; +} + +a { + padding: 20px; + text-decoration: none; +} |