_timer.scss 739 Bytes
Newer Older
1 2 3
// LMS -- modules -- student notes
// ====================

4
div.timer-main {
5
  @extend %ui-depth2;
6
  position: fixed;
7 8
  top: 0;
  right: 0;
9
  width: 100%;
10
  border-top: 2px solid $black;
11 12

  div#timer_wrapper {
13
    position: absolute;
14
    top: -3px;
15
    right: 10px;
16 17 18
    background: $black;
    color: $white;
    padding: ($baseline/2) $baseline;
19 20 21
    border-radius: 3px;
  }

22 23
  .timer_return_url {
    display: block;
24 25 26
    margin-bottom: ($baseline/4);
    border-bottom: 1px solid tint($black, 20%);
    padding-bottom: ($baseline/4);
27 28 29
    font-size: 13px;
  }

30
  .timer_label {
31
    color: #b0b0b0;
32
    font-size: 13px;
33
    margin-bottom: 3px;
34 35 36 37 38
  }

  #exam_timer {
    font-weight: bold;
    font-size: 15px;
39
    letter-spacing: 1px;
40 41
  }
}