78 lines
1.3 KiB
SCSS
78 lines
1.3 KiB
SCSS
.date {
|
|
background-color: $bg;
|
|
color: $fg;
|
|
border-radius: 30px;
|
|
border-top-right-radius: 0px;
|
|
border: 2px solid $contrastbg;
|
|
margin-right: 182px;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.timebox {
|
|
margin: 30px 0px;
|
|
.time-container {
|
|
.content {
|
|
font-family: Product Sans;
|
|
font-weight: bolder;
|
|
font-size: 60px;
|
|
}
|
|
.divider {
|
|
margin: 8px 15px;
|
|
padding: 0px 1px;
|
|
background: linear-gradient($red, $magenta, $blue, $cyan);
|
|
}
|
|
}
|
|
.date-container {
|
|
font-family: Product Sans;
|
|
margin-top: 2px;
|
|
}
|
|
}
|
|
|
|
.cal-box {
|
|
font-family: Product Sans;
|
|
border-radius: 30px;
|
|
padding: 0 1rem .2rem;
|
|
color: $fg;
|
|
background-color: $bgfull;
|
|
border-bottom: 2px solid $contrastbg;
|
|
border-top: 2px solid $contrastbg;
|
|
margin: 0px 12px 18px 12px;
|
|
|
|
.cal {
|
|
font-size: 20px;
|
|
background-color: inherit;
|
|
padding: .5rem .10rem 0rem;
|
|
margin-left: 10px;
|
|
border-radius: 30px;
|
|
|
|
& > * {
|
|
border: solid 0px transparent;
|
|
}
|
|
|
|
&.highlight {
|
|
padding: 10rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
calendar:selected {
|
|
color: $cyan;
|
|
}
|
|
|
|
calendar.header {
|
|
color: $cyan;
|
|
font-weight: bold;
|
|
}
|
|
|
|
calendar.button {
|
|
color: $cyan;
|
|
}
|
|
|
|
calendar.highlight {
|
|
color: $green;
|
|
font-weight: bold;
|
|
}
|
|
|
|
calendar:indeterminate {
|
|
color: $lightblack;
|
|
}
|