aboutsummaryrefslogtreecommitdiffhomepage
path: root/css
diff options
context:
space:
mode:
authorCiaran Gallagher <[email protected]>2019-11-29 17:47:24 +0000
committerCiaran Gallagher <[email protected]>2019-11-29 17:47:24 +0000
commit6a14ee862ae3f6dde8a012edde0f630c132e0444 (patch)
treeaa69b9754208d0fea9f45d4a0d66c67ff00db69e /css
parent48a3caf6ff80c7e25ff67afa7743f8255c6699ec (diff)
downloadpasta-6a14ee862ae3f6dde8a012edde0f630c132e0444.tar.gz
pasta-6a14ee862ae3f6dde8a012edde0f630c132e0444.zip
More Style Changes
Diffstat (limited to 'css')
-rw-r--r--css/main.css148
1 files changed, 136 insertions, 12 deletions
diff --git a/css/main.css b/css/main.css
index 87039eb..e4702a5 100644
--- a/css/main.css
+++ b/css/main.css
@@ -1,34 +1,153 @@
/*==========================
DEFAULTS
==========================*/
+
body {
background: rgb(51,51,51);
- background: linear-gradient(90deg, rgba(51,51,51,1) 0%, rgba(17,17,17,1) 50%, rgba(51,51,51,1) 100%);
+ background: linear-gradient(90deg, rgba(19,19,19,1) 0%, rgb(47, 47, 47) 50%, rgba(19,19,19,1) 100%);
}
nav {
- background: rgb(0,0,0);
+ background: rgb(7,7,7);
}
-h1, h2, h3 {
- color: #cc7b19;
+h1, h2, h3, h4, h5 {
+ color: #e5a00d;
}
.card {
- background-color: rgba(30,30,30,80);
+ background-color: rgba(40,40,40,1);
}
small {
color: rgb(190,190,190);
}
-table, td, tr {
+nav h3 small.text-muted {
+ color: rgb(240,240,240) !important;
+}
+
+a {
+ color: #F39C12;
+ text-decoration: none;
+ background-color: transparent;
+}
+
+a:hover {
+ color: rgb(240,240,240);
+ text-decoration: none;
+ background-color: transparent;
+}
+
+.text-muted {
+ color: rgb(190,190,190) !important;
+}
+
+label {
color: rgb(240,240,240);
}
/*==========================
+ MODALS
+==========================*/
+
+#progressModalTitle {
+ width: 100%;
+}
+
+.modal-content {
+ background-color: rgba(40,40,40,1);
+}
+
+.modal-content .close {
+ color: rgb(240,240,240);
+ opacity: 1;
+}
+
+.modal-header {
+ border-bottom: 1px solid #aaa;
+}
+
+.modal-footer {
+ border-top: 1px solid #aaa;
+}
+
+/*==========================
+ FORM CONTROLS
+==========================*/
+
+.form-control {
+ background: rgba(240, 240, 240, 0.7);
+ border: 1px solid #aaa;
+}
+
+.form-control:focus {
+ background: rgba(240, 240, 240, 0.95);
+ border-color: rgb(192, 118, 0.8);
+ box-shadow: 0 0 0 0.2rem rgba(243,156,18,.25);
+ color: #222;
+}
+
+.form-control.is-valid {
+ background-color: rgba(239, 255, 243, 0.7);
+}
+
+.form-control.is-valid:focus {
+ background-color: rgba(239, 255, 243, 0.95);
+ color: #222;
+}
+
+.form-control.is-invalid {
+ background-color: rgba(255, 239, 243, 0.7);
+}
+
+.form-control.is-invalid:focus {
+ background-color: rgba(255, 239, 243, 0.95);
+ color: #222;
+}
+
+/*==========================
+ NAV TABS
+==========================*/
+
+.nav-tabs {
+ border-bottom: 1px solid #aaa;
+}
+
+.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
+ color: rgb(240,240,240);
+ background-color: rgba(40,40,40,0.85);
+ border-color: #aaa #aaa rgba(40,40,40,1);
+}
+
+/*==========================
BUTTONS
==========================*/
+
+.btn-secondary {
+ color: #fff;
+ background-color: #F39C12;
+ border-color: #F39C12;
+}
+
+.btn-secondary:hover {
+ color: #fff;
+ background-color: #d4860b;
+ border-color: #c87f0a;
+}
+
+.btn-secondary:not(:disabled):not(.disabled):active {
+ color: #fff;
+ background-color: #c87f0a;
+ border-color: #bc770a;
+}
+
+.btn-secondary.disabled, .btn-secondary:disabled {
+ color: #fff;
+ background-color: #F39C12;
+ border-color: #F39C12;
+}
+
#episodeOrSeriesBtns label {
cursor: pointer;
}
@@ -38,15 +157,20 @@ table, td, tr {
}
/*==========================
- MODALS
+ TABLES
==========================*/
-#progressModalTitle {
- width: 100%;
+
+table, td, tr {
+ color: rgb(240,240,240);
}
-/*==========================
- TABLES
-==========================*/
+.table td, .table th {
+ border-top: 1px solid #aaa;
+}
+
+.table thead th {
+ border-bottom: 2px solid #aaa;
+}
#libraryTable tbody tr {
cursor: pointer;