diff --git a/resources/Logo/android-chrome-192x192.png b/resources/Logo/android-chrome-192x192.png new file mode 100644 index 0000000..2a8a3e0 Binary files /dev/null and b/resources/Logo/android-chrome-192x192.png differ diff --git a/resources/Logo/android-chrome-512x512.png b/resources/Logo/android-chrome-512x512.png new file mode 100644 index 0000000..dea88d3 Binary files /dev/null and b/resources/Logo/android-chrome-512x512.png differ diff --git a/resources/Logo/apple-touch-icon.png b/resources/Logo/apple-touch-icon.png new file mode 100644 index 0000000..5d66ab5 Binary files /dev/null and b/resources/Logo/apple-touch-icon.png differ diff --git a/resources/Logo/favicon-16x16.png b/resources/Logo/favicon-16x16.png new file mode 100644 index 0000000..d8bbed4 Binary files /dev/null and b/resources/Logo/favicon-16x16.png differ diff --git a/resources/Logo/favicon-32x32.png b/resources/Logo/favicon-32x32.png new file mode 100644 index 0000000..67da8b8 Binary files /dev/null and b/resources/Logo/favicon-32x32.png differ diff --git a/resources/Logo/favicon.ico b/resources/Logo/favicon.ico new file mode 100644 index 0000000..4fd7f80 Binary files /dev/null and b/resources/Logo/favicon.ico differ diff --git a/resources/Logo/site.webmanifest b/resources/Logo/site.webmanifest new file mode 100644 index 0000000..45dc8a2 --- /dev/null +++ b/resources/Logo/site.webmanifest @@ -0,0 +1 @@ +{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..fda4dad --- /dev/null +++ b/style.css @@ -0,0 +1,128 @@ +@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;700&display=swap"); + +html { + box-sizing: border-box; +} + +body { + margin: 0; + min-height: 100vh; + background-color: #fb4747; + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='152' height='152' viewBox='0 0 152 152'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='temple' fill='%23000000' fill-opacity='0.49'%3E%3Cpath d='M152 150v2H0v-2h28v-8H8v-20H0v-2h8V80h42v20h20v42H30v8h90v-8H80v-42h20V80h42v40h8V30h-8v40h-42V50H80V8h40V0h2v8h20v20h8V0h2v150zm-2 0v-28h-8v20h-20v8h28zM82 30v18h18V30H82zm20 18h20v20h18V30h-20V10H82v18h20v20zm0 2v18h18V50h-18zm20-22h18V10h-18v18zm-54 92v-18H50v18h18zm-20-18H28V82H10v38h20v20h38v-18H48v-20zm0-2V82H30v18h18zm-20 22H10v18h18v-18zm54 0v18h38v-20h20V82h-18v20h-20v20H82zm18-20H82v18h18v-18zm2-2h18V82h-18v18zm20 40v-18h18v18h-18zM30 0h-2v8H8v20H0v2h8v40h42V50h20V8H30V0zm20 48h18V30H50v18zm18-20H48v20H28v20H10V30h20V10h38v18zM30 50h18v18H30V50zm-2-40H10v18h18V10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + font-family: "Raleway", sans-serif; + font-weight: 700; + display: flex; + justify-content: center; + align-items: center; + text-align: center; +} + +.quote-container { + width: auto; + max-width: 900px; + padding: 20px 30px; + border-radius: 10px; + background-color: rgba(255, 255, 255, 0.9); + box-shadow: 0px 10px 10px 10px rgba(0, 0, 0, 0.4); +} + +.quote-text { + font-size: 2.75rem; +} + +.long-quote { + font-size: 2rem; +} + +.fa-quote-left { + font-size: 4rem; + color: #1a8cff; +} + +/* .fa-quote-right { + font-size: 1rem; + color: #ff0000; + vertical-align: super; +} */ + +.quote-author { + font-style: italic; + font-weight: 500; + font-size: 2rem; + margin-top: 10px; +} + +.button-container { + margin-top: 10px; + display: flex; + justify-content: space-between; +} + +button { + border: none; + cursor: pointer; + font-size: 1.2rem; + height: 2.5rem; + border-radius: 10px; + background-color: #99ff66; + color: black; + outline: none; + padding: 0.5rem 1.8rem; + box-shadow: 0 0.3rem rgba(121, 121, 121, 0.65); +} + +button:hover { + filter: brightness(115%); +} + +button:active { + transform: translate(0, 0.3rem); + box-shadow: 0 0.1rem rgba(255, 255, 255, 0.65); +} + +.twitter-button:hover { + color: #38a1f3; +} + +.fa-twitter { + font-size: 1.25rem; +} + +/* Loader */ +.loader { + border: 16px solid #f3f3f3; /* Light grey */ + border-top: 16px solid #3498db; /* Blue */ + border-right: 16px solid blueviolet; + border-bottom: 16px solid gold; + border-left: 16px solid #00ff00; + border-radius: 50%; + width: 120px; + height: 120px; + animation: spin 2s linear infinite; +} + +@keyframes spin { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } +} + +/* Hide div class*/ +.hidediv { + display: none; +} + +/* Media query size: Tablet or smaller */ + +@media screen and (max-width: 1000px) { + .quote-container { + margin: auto 10px; + } + + .quote-text { + font-size: 2.5rem; + } +}