summaryrefslogtreecommitdiff
path: root/sass
diff options
context:
space:
mode:
authorDerf Null <derf@finalrewind.org>2023-03-31 17:40:53 +0200
committerDerf Null <derf@finalrewind.org>2023-03-31 17:40:53 +0200
commit2171317bad1cf9addf86f4cc0ec59f3b48327ce1 (patch)
tree51e0ce1f1b76879a0d4ff8722d7e525e6c0f6596 /sass
parent21758320748253cea11e173025369b52173727a1 (diff)
move local.css to sass
Diffstat (limited to 'sass')
-rw-r--r--sass/src/common/local.scss60
-rw-r--r--sass/src/dark/index.scss1
-rw-r--r--sass/src/light/index.scss1
3 files changed, 62 insertions, 0 deletions
diff --git a/sass/src/common/local.scss b/sass/src/common/local.scss
new file mode 100644
index 0000000..32f66da
--- /dev/null
+++ b/sass/src/common/local.scss
@@ -0,0 +1,60 @@
+.action-checkin,
+.action-checkout,
+.action-undo,
+.action-cancelled-from,
+.action-cancelled-to,
+.action-share {
+ cursor: pointer;
+}
+
+.brand-logo span {
+ transition: color 1s;
+}
+
+.brand-logo:hover .ca,
+.brand-logo:hover .ce {
+ color: #a8e3fa !important;
+}
+
+.brand-logo:hover .cb,
+.brand-logo:hover .cd {
+ color: #f5c4ce !important;
+}
+
+td.cancelled {
+ text-decoration: line-through;
+}
+
+.wagons span {
+ margin-right: 0.5ex;
+ color: #808080;
+}
+
+.wagons .wagonclass {
+ font-weight: bold;
+ color: inherit;
+}
+
+.wagons .wagonnum {
+ margin-right: 0;
+ color: inherit;
+}
+
+.wagons .checksum:before {
+ content: "-";
+}
+
+h1 {
+ font-size: 2.92rem;
+ margin: 1.9466666667rem 0 1.168rem 0;
+}
+
+h2 {
+ font-size: 2.28rem;
+ margin: 1.52rem 0 .912rem 0;
+}
+
+h3 {
+ font-size: 1.64rem;
+ margin: 1.0933333333rem 0 .656rem 0;
+}
diff --git a/sass/src/dark/index.scss b/sass/src/dark/index.scss
index f46aefb..28c615b 100644
--- a/sass/src/dark/index.scss
+++ b/sass/src/dark/index.scss
@@ -2,6 +2,7 @@
@import 'variables.scss';
@import '../../materialize.scss';
@import '../common/index.scss';
+@import '../common/local.scss';
.progress {
background-color: color('grey', 'darken-3');
diff --git a/sass/src/light/index.scss b/sass/src/light/index.scss
index 170b750..531c346 100644
--- a/sass/src/light/index.scss
+++ b/sass/src/light/index.scss
@@ -2,6 +2,7 @@
@import 'variables.scss';
@import '../../materialize.scss';
@import '../common/index.scss';
+@import '../common/local.scss';
.progress {
background-color: color('grey', 'lighten-2');