Co-Authored-By: Jean-Michel Claus <jmc@edx.org> Co-Authored-By: Brian Talbot <btalbot@edx.org> Co-Authored-By: Tim Babych <tim@edx.org> Co-Authored-By: Oleg Marshev <oleg@edx.org> Co-Authored-By: Chris Rodriguez <crodriguez@edx.org>
42 lines
739 B
SCSS
42 lines
739 B
SCSS
// LMS -- modules -- student notes
|
|
// ====================
|
|
|
|
div.timer-main {
|
|
@extend %ui-depth2;
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
border-top: 2px solid $black;
|
|
|
|
div#timer_wrapper {
|
|
position: absolute;
|
|
top: -3px;
|
|
right: 10px;
|
|
background: $black;
|
|
color: $white;
|
|
padding: ($baseline/2) $baseline;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.timer_return_url {
|
|
display: block;
|
|
margin-bottom: ($baseline/4);
|
|
border-bottom: 1px solid tint($black, 20%);
|
|
padding-bottom: ($baseline/4);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.timer_label {
|
|
color: #b0b0b0;
|
|
font-size: 13px;
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
#exam_timer {
|
|
font-weight: bold;
|
|
font-size: 15px;
|
|
letter-spacing: 1px;
|
|
}
|
|
}
|