_syllabus.scss 879 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
  }

  table {
16
    table-layout: auto;
17 18
    text-align: left;

19
    margin: 10px 0;
20 21 22 23 24 25 26 27

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

    tr.first {
      td {
28
        padding-top: 15px !important;
29
      }
30
    } 
31 32

    td {
33 34
      border: none !important;
      padding: 5px 10px !important;
35
      vertical-align: middle;
36 37
      font-size: 1em !important;
      line-height: auto;
38

Arjun Singh committed
39
      &.day, &.due, &.slides, &.assignment {
40
        white-space: nowrap !important;
41 42 43 44 45 46 47 48 49 50 51
      }

      &.no_class {
        text-align: center;
      }

      &.important {
        color: red;
      }

      &.week_separator {
52
        padding: 0px !important;
53 54 55 56 57 58 59 60
        
        hr {
          margin: 10px;
        }
      }
    }
  }
}