summaryrefslogtreecommitdiff
path: root/webcards/styles/home
diff options
context:
space:
mode:
Diffstat (limited to 'webcards/styles/home')
-rw-r--r--webcards/styles/home/base.css108
-rw-r--r--webcards/styles/home/desktop.css6
-rw-r--r--webcards/styles/home/mobile.css6
3 files changed, 0 insertions, 120 deletions
diff --git a/webcards/styles/home/base.css b/webcards/styles/home/base.css
deleted file mode 100644
index a082ec2..0000000
--- a/webcards/styles/home/base.css
+++ /dev/null
@@ -1,108 +0,0 @@
-* {
- font-family: 'Montserrat', sans-serif;
-}
-
-html, body {
- margin: 0;
- padding: 0;
-
- min-width: 100vw;
- min-height: 100vh;
-
- display: block;
-}
-
-body {
- display: flex;
-
- align-items: center;
- justify-content: center;
-
- background-color: var(--main-bg);
-}
-
-div.content {
- padding: 20px;
-
- background-color: var(--gui-bg-main);
- border-radius: 10px;
-
- display: flex;
- text-align: center;
- flex-direction: column;
-
- align-items: center;
-}
-
-a, button {
- font-size: 1em;
- display: block;
- color: white;
- box-sizing: border-box;
-
- border-radius: 5px;
- border: none;
- padding: 5px;
-
- background-color: #0084ff;
-
- transition-duration: 0.2s;
-
- text-decoration: none;
-
- margin-top: 10px;
-}
-
-
-
-div.content > div.prev {
- width: 100%;
- margin: 10px;
-
- border-radius: 5px;
-
- display: block;
-
- padding: 0;
-}
-
-div.prev > a{
- display: inline-block;
- width: 80%;
- margin: 0;
- padding: 5px;
- border-radius: 0;
-}
-
-div.prev > a:first-of-type {
- border-top-left-radius: 5px;
-}
-
-div.prev > a:last-of-type {
- border-bottom-left-radius: 5px;
-}
-
-div.prev > button {
- display: inline-block;
- width: 20%;
- margin: 0;
- background-color: #ff1e00;
- padding: 5px;
- border-radius: 0;
-}
-
-div.prev > button:first-of-type {
- border-top-right-radius: 5px;
-}
-
-div.prev > button:last-of-type {
- border-bottom-right-radius: 5px;
-}
-
-div.prev > button:hover {
- background-color: #ff5741;
-}
-
-div.prev > button:active {
- background-color: #9c1200;
-} \ No newline at end of file
diff --git a/webcards/styles/home/desktop.css b/webcards/styles/home/desktop.css
deleted file mode 100644
index 0edda76..0000000
--- a/webcards/styles/home/desktop.css
+++ /dev/null
@@ -1,6 +0,0 @@
-@media (min-width: 600px) {
- div.content > div {
- display: flex;
- flex-direction: row;
- }
-} \ No newline at end of file
diff --git a/webcards/styles/home/mobile.css b/webcards/styles/home/mobile.css
deleted file mode 100644
index 4e469de..0000000
--- a/webcards/styles/home/mobile.css
+++ /dev/null
@@ -1,6 +0,0 @@
-@media (max-width: 599px) {
- div.content > div {
- display: flex;
- flex-direction: column;
- }
-} \ No newline at end of file