-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Formatting for calculator output and packed footnote
- Loading branch information
Showing
9 changed files
with
167 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
// Think Metric | ||
// Style: Components | ||
|
||
main.center-line { | ||
>section { | ||
p { | ||
text-align: center; | ||
} | ||
>i.font-icon { | ||
font-size: 3rem; | ||
} | ||
} | ||
} | ||
|
||
ul.plain-list { | ||
list-style-type: none; | ||
padding-left: 0px; | ||
li { | ||
text-align: center; | ||
} | ||
} | ||
|
||
figure.box-frame { | ||
background-color: white; | ||
border: 5px solid silver; | ||
padding: 5px 20px; | ||
img { | ||
height: 100px; | ||
.MobileMode({ height: 70px; }) | ||
} | ||
} | ||
|
||
figure.small-picture { | ||
max-width: 200px; | ||
.MobileMode({ max-width: 150px; }) | ||
} | ||
|
||
table.big-table { | ||
margin: 0px; | ||
.TableCell() { | ||
font-size: 1em; | ||
text-align: left; | ||
&:first-child { | ||
padding-left: 0px; | ||
} | ||
&:last-child { | ||
padding-right: 0px; | ||
} | ||
} | ||
thead { | ||
tr { | ||
th { | ||
.TableCell(); | ||
} | ||
} | ||
} | ||
tbody { | ||
tr { | ||
td { | ||
.TableCell(); | ||
img { | ||
max-width: 120px; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
// Responsive Design | ||
.MobileMode({ | ||
table.big-table { //hide 2nd column in compact mode | ||
thead tr th:nth-child(2), | ||
tbody tr td:nth-child(2) { | ||
display : none; | ||
} | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.