Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions _stylesheets/curriculum.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ table{
}
}



// Custom columns for hide/show of TOC
.col-content, .col-toc{
transition: padding 300ms, opacity 200ms;
Expand Down Expand Up @@ -208,6 +210,7 @@ table{
.slide{
h2{
font-size: 52px;
margin-bottom: 30px;
}
h3,h4{
font-size: 42px;
Expand All @@ -217,6 +220,45 @@ table{
color: $gray;
}

.objectives{
-webkit-column-count: 2;
-moz-column-count: 2;
column-count: 2;
width: 85%;
margin: 0 auto;
text-align: left;
}

input[type="checkbox"]{
display:none;

&+label{
width: 100%;
line-height: 40px;

&:before{
content: " ";
float: left;
font: normal normal 20px octicons;
text-align: center;
height: 20px;
width: 20px;
margin: 10px;
border-radius: 50%;
box-shadow: 0 0 0 2px $gray-lighter;
}
}

&:checked + label{
text-decoration: line-through;

&:before{
content: "\f03a";
color: $brand-primary;
}
}
}

// Custom Octicon styling
.mega-octicon{
font-size: 110px;
Expand Down Expand Up @@ -263,6 +305,18 @@ table{
width: 100%;
display: table;

a[href^="http://"],
a[href^="https://"]{
&:after{
content: "";
margin-left: 0;
}
}

p{
padding: 0 20px;
}

pre{
width: 80%;
padding: 2em;
Expand Down