feat: add work in progress 7.0 code

Co-authored-by: Alex Sparkes <turbomarshmello@gmail.com>
This commit is contained in:
David Ralph
2022-04-08 14:48:36 +01:00
parent e0820c6b2a
commit 361fae7f25
136 changed files with 8631 additions and 3500 deletions

View File

@@ -1,11 +1,11 @@
@import '../../../scss/variables';
@import 'scss/variables';
.clock {
font-size: 4em;
margin: 0;
cursor: initial;
user-select: none;
font-weight: 600;
--shadow-shift: 0.4rem;
}
@@ -17,19 +17,24 @@
.react-clock__face {
margin: 0 auto;
border-radius: 100%;
box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
/*box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);*/
border: none !important;
border: 1px solid map-get($theme-colours, 'main') !important;
@include themed() {
border: 1px solid t($color) !important;
}
cursor: initial;
user-select: none;
}
.react-clock__hand__body,
.react-clock__mark__body {
background: map-get($theme-colours, 'main') !important;
box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
@include themed() {
background: t($color) !important;
}
/*box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);*/
}
.clock-container {
margin-top: 13px;
.clockBackground {
@extend %basic;
padding: 1rem;
}