diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..bbd75b3 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Jonas da Silva + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/assets/allay.gif b/assets/allay.gif new file mode 100644 index 0000000..d02a579 Binary files /dev/null and b/assets/allay.gif differ diff --git a/assets/allay.png b/assets/allay.png new file mode 100644 index 0000000..1845cce Binary files /dev/null and b/assets/allay.png differ diff --git a/assets/background.webp b/assets/background.webp new file mode 100644 index 0000000..7049b24 Binary files /dev/null and b/assets/background.webp differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..94c75af --- /dev/null +++ b/index.html @@ -0,0 +1,87 @@ + + + + + + + Allay + + + + + + + + + + + +
+ +

Allay

+
Your Personal Creator Assistant
+
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+ + + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..21d5c09 --- /dev/null +++ b/style.css @@ -0,0 +1,114 @@ +* { + /* --primary: #db1f29; */ + --primary: cornflowerblue; + --secondary: white; + font-family: 'Jost', sans-serif; + font-family: 'Montserrat', sans-serif; + text-align: center; +} + +body { + margin: 0; +} + +main { + background-image: url('assets/background.webp'); + color: var(--secondary); + height: 90vh; + padding-bottom: 5vh; +} + +button.mcbtn { + border-color: #70B237; + background-color: #477A1E; + margin: 1vh; + height: 10vh; + width: 90vw; + font-size: 2.5vh; + color: var(--secondary); +} + +footer { + background-color: #222; + color: var(--secondary); + height: 10vh; + font-size: 2.5vh; +} + +footer p { + margin: 0; +} + +footer a:not(.phantom) { + color: aquamarine; +} + +footer a:hover:not(.phantom) { + color: mediumaquamarine; +} + +.material-symbols-outlined, +.icon { + vertical-align: middle; +} + +.center { + display: block; + margin-left: auto; + margin-right: auto; +} + +.icon { + height: 2.5vh; +} + +.boxes { + display: flex; + flex-wrap: nowrap; + justify-content: space-evenly; +} + +.box { + width: 20vw; + height: 20vw; + background-color: var(--secondary); + color: var(--primary); + border-radius: 20%; + border-style: none; + font-size: 1rem; + font-weight: bold; + transition-duration: .1s; +} + +.box:hover { + transform: scale(1.1); + transistion-property: transform; + transition-duration: .4s; +} + +#logo { + width: 20vh; +} + +#title { + font-size: 7.5vh; + margin: 1vh; +} + +[role="doc-subtitle"] { + font-size: 2.5vh; + margin-bottom: 2vh; +} + +@media (prefers-reduced-motion) { + #logo { + content: url('assets/allay.png'); + } + + .box:hover { + transform: none; + transition-property: none; + transition-duration: none; + } + +} \ No newline at end of file