123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- /*----------------------------------------------------------------
- [Table of contents]
- 0.General
- 1.Home
- 2.Schools
- 3.Courses
- 4.Course
- 5.Notes
- ----------------------------------------------------------------*/
- /* 0.`General
- ---------------------------------------------- */
- #messages {
- @extend .grid-8;
- padding: $base/2;
- }
- /* 1.`Home
- ---------------------------------------------- */
- #pg_home {
- .subheader {
- text-align: center;
- padding: $base*2 0;
- border: 0;
- background: none;
- }
- h1 {
- @extend .futura;
- }
- .section-home {
- margin-bottom: $base;
- }
- }
- #intro-video {
- @extend .grid-4;
- }
- #intro-text {
- @extend .grid-4;
- }
- #intro-schools {
- @extend .grid-8;
- h4 {
- }
- li {
- @include inline-block;
- position: relative;
- padding: $base/4 0;
- padding-right: $base/2;
- @extend .small;
- &:after {
- content: "";
- position: absolute;
- right: 3px;
- top: 50%;
- width: 3px;
- height: 2px;
- background-color: #999;
- }
- }
- }
- /* 2.`Schools
- ---------------------------------------------- */
- #schools {
- li {
- @extend .group;
- }
- a {
- display: block;
- float: left;
- clear: both;
- padding: $base/4;
- &:hover {
- .school_name {
- color: $mustard;
- }
- .number_of_courses, .number_of_notes {
- color: #444;
- }
- }
- span {
- @include transition( color );
- }
- }
- .icon-pair, .text-pair {
- @include inline-block;
- }
- .icon-pair {
- margin-right: $base/2;
- }
- .school_name {
- @extend .large;
- color: #333;
- }
- .number_of_courses, .number_of_notes {
- @extend .futura-oblique;
- color: #999;
- }
- }
- /* 3.`Courses
- ---------------------------------------------- */
- #pg_courses {
- .main-content {
- @extend .grid-5;
- }
- .course {
- position: relative;
- clear: both;
- margin-bottom: $base/2;
- .course-name {
- display: block;
- margin-bottom: $base/4;
- @extend .plump;
- text-transform: capitalize;
- color: #000;
- &:hover {
- color: $mustard;
- }
- }
- .course-description {
- color: #777;
- }
- .course-content {
- padding-bottom: $base;
- margin-left: 60px;
- @include dotted-x( bottom );
- }
- .course-data {
- position: absolute;
- top: 0;
- color: #bfbfbf;
- }
- .course-data-item {
- margin-bottom: $base/6;
- text-align: center;
- }
- .course-data-number {
- @extend .fat;
- @extend .futura-oblique;
- }
- .course-data-description {
- margin-top: $base/-3;
- }
- }
- }
- /* 4.`Course
- ---------------------------------------------- */
- #pg_lectures {
- .main-content {
- @extend .grid-5;
- }
- .lecture {
- padding-bottom: $base;
- margin-bottom: $base/2;
- @include dotted-x( bottom );
- }
- .lecture-name {
- display: block;
- margin-bottom: $base/4;
- @extend .big;
- color: #000;
- @include transition( color );
- &:hover {
- color: $mustard;
- }
- }
- }
- /* 5.`Notes
- ---------------------------------------------- */
- #pg_notes {
- .main-content {
- @extend .grid-5;
- }
- }
|