_syllabus.scss 728 Bytes
Newer Older
1 2
div.syllabus {

3
  padding: 2em 2.5em;
4 5 6 7 8 9 10 11

  text-align: center;

  h1 {
    @extend .top-header
  }

  .notes {
12
    margin: 0px auto 20px;
13 14 15 16 17 18
  }

  table {

    text-align: left;

19
    margin: 10px 0;
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37

    thead {
      font-weight: bold;
      border-bottom: 1px solid black;
    }

    tr.first {
      td {
        padding-top: 15px;
      }
    }

    td {

      vertical-align: middle;

      padding: 5px 10px;

Arjun Singh committed
38
      &.day, &.due, &.slides, &.assignment {
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
        white-space: nowrap;
      }

      &.no_class {
        text-align: center;
      }

      &.important {
        color: red;
      }

      &.week_separator {
        padding: 0px;
        
        hr {
          margin: 10px;
        }

      }

    }

  }

}