1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-10-31 23:35:29 +01:00
portfolio/src/components/molecules/Availability.scss

37 lines
682 B
SCSS
Raw Normal View History

2018-04-21 02:03:45 +02:00
@import 'variables';
.availability {
position: absolute;
bottom: 0;
border-radius: .25rem;
2018-05-10 16:06:17 +02:00
color: $text-color-light;
z-index: 2;
2018-04-21 02:03:45 +02:00
padding: $spacer / 2;
display: block;
2018-04-25 20:41:47 +02:00
transition: opacity .2s ease-out;
2018-04-21 02:03:45 +02:00
2018-05-10 16:06:17 +02:00
.dark & {
color: $text-color-light--dark;
}
2018-05-13 02:20:07 +02:00
p {
margin-bottom: 0;
}
2018-04-21 02:03:45 +02:00
&.available {
2018-05-10 16:06:17 +02:00
background: rgba($brand-light, .8);
2018-04-21 02:03:45 +02:00
color: $brand-main;
position: fixed;
bottom: $spacer;
2018-05-10 16:06:17 +02:00
.dark & {
background: rgba($body-background-color--dark, .8);
color: $brand-light;
}
2018-04-21 02:03:45 +02:00
}
2018-04-25 20:41:47 +02:00
a {
border-bottom: 1px solid rgba($brand-cyan, .4);
}
2018-04-21 02:03:45 +02:00
}