0
0
Fork 0

Merge branch 'main' of github.com:Oliver-Akins/top-lists into main

This commit is contained in:
Oliver-Akins 2020-10-30 20:23:28 -06:00
commit 9fbbb2f010
14 changed files with 2398 additions and 1399 deletions

View file

@ -62,7 +62,7 @@ export default {
<style>
@import "./css/transitions.css";
@import "./css/theme/dark.css";
@import "./css/theme/halloween.css";
@import "./css/scrollbar.css";
@import "./css/tooltips.css";
@import "./css/inputs.css";

View file

@ -212,10 +212,11 @@ export default {
}
#error {
background-color: var(--error-background);
border-radius: var(--corner-rounding);
border-color: var(--error);
border-color: var(--error-accent);
color: var(--error-text);
border-style: solid;
color: var(--error);
text-align: center;
border-width: 2px;
padding: 10px;

View file

@ -75,7 +75,7 @@ export default {
.card {
border-radius: var(--corner-rounding);
background-color: var(--card-colour);
color: var(--spotify-green);
color: var(--card-text);
text-align: center;
padding: 15px;
width: 90%;

View file

@ -162,6 +162,7 @@ export default {
background-color: var(--modal-background);
border-radius: var(--corner-rounding);
padding: 0 15px 15px 15px;
color: var(--modal-text);
overflow-y: auto;
max-height: 85%;
z-index: 11;

View file

@ -155,6 +155,7 @@ export default {
background-color: var(--modal-background);
border-radius: var(--corner-rounding);
padding: 0 15px 15px 15px;
color: var(--modal-text);
text-align: center;
overflow-y: auto;
max-height: 85%;

View file

@ -55,6 +55,7 @@ export default {
.modal {
background-color: var(--modal-background);
border-radius: var(--corner-rounding);
color: var(--modal-text);
text-align: center;
max-height: 85%;
padding: 0 15px;

View file

@ -73,6 +73,7 @@ export default {
background-color: var(--modal-background);
border-radius: var(--corner-rounding);
padding: 0 15px 15px 15px;
color: var(--modal-text);
text-align: center;
max-height: 85%;
z-index: 11;

View file

@ -0,0 +1,70 @@
:root {
--spotify-green: #1DB954;
--spotify-white: #FFFFFF;
--spotify-black: #000000;
--accent1: #7289da;
--accent2: #00aa00;
--error: #ff0000;
--error-background: #ff00005d;
--error-text: white;
--error-accent: var(--error);
--success: var(--accent2);
--success-background: #00aa002f;
--success-text: var(--card-text);
--success-accent: #00aa00;
--background: #FF8C00;
--background-text: var(--spotify-white);
--card-colour: #794200;
--card-text: white;
--on-card-colour: #bd6800;
--on-card-text: white;
--modal-container-background: #0e0f10e0;
--modal-background: var(--background);
--modal-close-button: black;
--modal-text: black;
--fonts: 'Open Sans', sans-serif;
--corner-rounding: 7px;
--input-background: var(--spotify-black);
--input-text: orange;
--input-active-border: var(--accent1);
--button-background: #f09e3c;
--button-hover-background: #d6923f;
--button-disabled-background: #965200;
--button-text: var(--spotify-black);
--button-disabled-text: var(--spotify-black);
--textarea-background: var(--spotify-black);
--textarea-text-colour: orange;
--textarea-border-colour: var(--accent1);
--missing-picture-background: var(--on-card-colour);
--missing-picture-foreground: var(--accent2);
--tooltip-colour: var(--spotify-black);
--tooltip-text: orange;
--percent-filled: black;
--percent-empty: white;
--percent-text: black;
--scrollbar-background: #6d3e00;
--scrollbar-handle: #e06500;
--scrollbar-handle-hover: #e06500c2;
--card-bottom-row-text-colour: var(--on-card-text);
--card-bottom-row-background: var(--on-card-colour);
--card-bottom-row-hover-background: #9e5700;
--card-bottom-row-divider-colour: white;
--card-bottom-row-icon-colour: white;
}