mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 05:34:53 +08:00
37 lines
461 B
SCSS
37 lines
461 B
SCSS
|
|
||
|
// scss-lint:disable NestingDepth ImportantRule
|
||
|
|
||
|
.session-modal {
|
||
|
|
||
|
ul {
|
||
|
list-style-type: none;
|
||
|
padding-left: 0;
|
||
|
|
||
|
li {
|
||
|
padding: .25em 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
.instruction-session-collapse {
|
||
|
cursor: pointer;
|
||
|
margin-bottom: .5em;
|
||
|
margin-top: 20px;
|
||
|
|
||
|
.fa-angle-up {
|
||
|
margin-left: .5em;
|
||
|
}
|
||
|
|
||
|
&.collapsed {
|
||
|
|
||
|
.fa-angle-up {
|
||
|
@include rotate(-180deg);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|