lbry.tech/sass/pages/_tour.scss

74 lines
957 B
SCSS
Raw Normal View History

2018-08-07 00:51:32 +02:00
.tour {
border-top: 1px solid rgba($black, 0.05);
position: relative;
top: 1rem;
2018-07-16 23:06:37 +02:00
2018-08-07 00:51:32 +02:00
&::after {
@include clearfix;
2018-07-16 23:06:37 +02:00
}
}
2018-08-07 00:51:32 +02:00
.tour__sidebar {
width: 250px; height: 100%;
float: left;
list-style-type: none;
2018-07-16 23:06:37 +02:00
padding-top: 1rem;
2018-08-07 00:51:32 +02:00
padding-right: 1rem;
vertical-align: top;
2018-07-16 23:06:37 +02:00
}
2018-08-07 00:51:32 +02:00
.tour__sidebar__step {
cursor: pointer;
2018-07-16 23:06:37 +02:00
2018-08-07 00:51:32 +02:00
&:not(:last-of-type) {
margin-bottom: 1.5rem;
2018-07-16 23:06:37 +02:00
}
&:not(.active) {
2018-08-07 00:51:32 +02:00
button,
2018-07-16 23:06:37 +02:00
span {
2018-08-07 00:51:32 +02:00
color: rgba($black, 0.3);
2018-07-16 23:06:37 +02:00
}
}
2018-08-07 00:51:32 +02:00
&.active,
&:hover {
button {
color: $teal;
}
2018-07-16 23:06:37 +02:00
span {
2018-08-07 00:51:32 +02:00
color: $black;
2018-07-16 23:06:37 +02:00
}
}
2018-08-07 00:51:32 +02:00
button,
2018-07-16 23:06:37 +02:00
span {
2018-08-07 00:51:32 +02:00
transition: color 0.2s;
2018-07-16 23:06:37 +02:00
}
button {
2018-08-07 00:51:32 +02:00
background-color: transparent;
font-size: 1.25rem;
font-weight: 600;
2018-07-16 23:06:37 +02:00
}
span {
display: block;
2018-08-07 00:51:32 +02:00
font-size: 1rem;
2018-07-16 23:06:37 +02:00
}
}
2018-08-07 00:51:32 +02:00
.tour__content {
width: calc(100% - 250px); height: 100%; min-height: 500px;
2018-07-16 23:06:37 +02:00
2018-08-07 00:51:32 +02:00
border-left: 1px solid rgba($black, 0.05);
float: right;
vertical-align: top;
2018-07-16 23:06:37 +02:00
}