diff --git a/sass/_breakpoints.scss b/sass/_breakpoints.scss deleted file mode 100644 index 3ea0ddf..0000000 --- a/sass/_breakpoints.scss +++ /dev/null @@ -1,113 +0,0 @@ -$grid-breakpoints: ( xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px) !default; -// Breakpoint viewport sizes and media queries. -// -// Breakpoints are defined as a map of (name: minimum width), order from small to large: -// -// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px) -// -// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default. -// Name of the next breakpoint, or null for the last breakpoint. -// -// >> breakpoint-next(sm) -// md -// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)) -// md -// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl)) -// md -@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) { - $n: index($breakpoint-names, $name); - @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null); -} // Minimum breakpoint width. Null for the smallest (first) breakpoint. -// -// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)) -// 576px -@function breakpoint-min($name, $breakpoints: $grid-breakpoints) { - $min: map-get($breakpoints, $name); - @return if($min !=0, $min, null); -} // Maximum breakpoint width. Null for the largest (last) breakpoint. -// The maximum value is calculated as the minimum of the next one less 0.02px -// to work around the limitations of `min-` and `max-` prefixes and viewports with fractional widths. -// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max -// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari. -// See https://bugs.webkit.org/show_bug.cgi?id=178261 -// -// >> breakpoint-max(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)) -// 767.98px -@function breakpoint-max($name, $breakpoints: $grid-breakpoints) { - $next: breakpoint-next($name, $breakpoints); - @return if($next, breakpoint-min($next, $breakpoints) - .02px, null); -} // Returns a blank string if smallest breakpoint, otherwise returns the name with a dash infront. -// Useful for making responsive utilities. -// -// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)) -// "" (Returns a blank string) -// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)) -// "-sm" -@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) { - @return if(breakpoint-min($name, $breakpoints)==null, "", "-#{$name}"); -} // Media of at least the minimum breakpoint width. No query for the smallest breakpoint. -// Makes the @content apply to the given breakpoint and wider. -@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) { - $min: breakpoint-min($name, $breakpoints); - @if $min { - @media (min-width: $min) { - @content; - } - } - @else { - @content; - } -} // Media of at most the maximum breakpoint width. No query for the largest breakpoint. -// Makes the @content apply to the given breakpoint and narrower. -@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) { - $max: breakpoint-max($name, $breakpoints); - @if $max { - @media (max-width: $max) { - @content; - } - } - @else { - @content; - } -} // Media that spans multiple breakpoint widths. -// Makes the @content apply between the min and max breakpoints -@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) { - $min: breakpoint-min($lower, $breakpoints); - $max: breakpoint-max($upper, $breakpoints); - @if $min !=null and $max !=null { - @media (min-width: $min) and (max-width: $max) { - @content; - } - } - @else if $max==null { - @include media-breakpoint-up($lower, $breakpoints) { - @content; - } - } - @else if $min==null { - @include media-breakpoint-down($upper, $breakpoints) { - @content; - } - } -} // Media between the breakpoint's minimum and maximum widths. -// No minimum for the smallest breakpoint, and no maximum for the largest one. -// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower. -@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) { - $min: breakpoint-min($name, $breakpoints); - $max: breakpoint-max($name, $breakpoints); - @if $min !=null and $max !=null { - @media (min-width: $min) and (max-width: $max) { - @content; - } - } - @else if $max==null { - @include media-breakpoint-up($name, $breakpoints) { - @content; - } - } - @else if $min==null { - @include media-breakpoint-down($name, $breakpoints) { - @content; - } - } -} \ No newline at end of file diff --git a/sass/_colors.scss b/sass/_colors.scss deleted file mode 100644 index e41b6cf..0000000 --- a/sass/_colors.scss +++ /dev/null @@ -1 +0,0 @@ -$brand: #0066cc; \ No newline at end of file diff --git a/sass/_fonts.scss b/sass/_fonts.scss deleted file mode 100644 index b162ee8..0000000 --- a/sass/_fonts.scss +++ /dev/null @@ -1,30 +0,0 @@ -@font-face { - font-family: "Roboto"; - font-weight: 200; - src: url(/fonts/Roboto/Roboto-Thin.ttf) format("truetype"); -} -@font-face { - font-family: "Roboto"; - font-weight: 300; - src: url(/fonts/Roboto/Roboto-Light.ttf) format("truetype"); -} -@font-face { - font-family: "Roboto"; - font-weight: 400; - src: url(/fonts/Roboto/Roboto-Regular.ttf) format("truetype"); -} -@font-face { - font-family: "Roboto"; - font-weight: 700; - src: url(/fonts/Roboto/Roboto-Bold.ttf) format("truetype"); -} -@font-face { - font-family: "RobotoMono"; - font-weight: 300; - src: url(/fonts/RobotoMono/RobotoMono-Light.ttf) format("truetype"); -} -@font-face { - font-family: "RobotoMono"; - font-weight: 400; - src: url(/fonts/RobotoMono/RobotoMono-Regular.ttf) format("truetype"); -} diff --git a/sass/_mixins.scss b/sass/_mixins.scss deleted file mode 100644 index f39ced8..0000000 --- a/sass/_mixins.scss +++ /dev/null @@ -1,39 +0,0 @@ -@mixin transform($arguments) { - -webkit-transform: $arguments; - -moz-transform: $arguments; - -ms-transform: $arguments; - -o-transform: $arguments; - transform: $arguments; -} - -@mixin transition($arguments) { - -webkit-transition: $arguments; - -moz-transition: $arguments; - -ms-transition: $arguments; - -o-transition: $arguments; - transition: $arguments; -} - -@mixin colored-link($thickness, $color) { - position: relative; - text-decoration: none; - color: $color; - &:before { - content: ""; - position: absolute; - background-color: $color; - width: 100%; - height: $thickness; - bottom: 0; - left: 0; - visibility: hidden; - @include transform(scaleX(0)); - @include transition(all 0.2s ease-out 0s); - } - &:hover { - &:before { - visibility: visible; - @include transform(scaleX(1)); - } - } -} \ No newline at end of file diff --git a/sass/_simple-grid.scss b/sass/_simple-grid.scss deleted file mode 100644 index 006be3b..0000000 --- a/sass/_simple-grid.scss +++ /dev/null @@ -1,188 +0,0 @@ -// SIMPLE GRID - SASS/SCSS - -// @import url(https://fonts.googleapis.com/css?family=Lato:400,300,300italic,400italic,700,700italic); - -// fonts -$font-family: 'Roboto', Helvetica, sans-serif; -$font-weight-light: 300; -$font-weight-regular: 400; -$font-weight-heavy: 700; -$font-height: 1.5; - -// colors -$dark-grey: #333447; -$dark-gray: #333447; // for the Americans - -// universal - -html, -body { - height: 100%; - width: 100%; - margin: 0; - padding: 0; - left: 0; - top: 0; - font-size: 100%; -} - -* { - // font-family: $font-family; - // color: $dark-grey; - line-height: $font-height; -} - -// typography - -h1 { - font-size: 2.5rem; -} - -h2 { - font-size: 2rem; -} - -h3 { - font-size: 1.375rem; -} - -h4 { - font-size: 1.125rem; -} - -h5 { - font-size: 1rem; -} - -h6 { - font-size: 0.875rem; -} - -p { - font-size: 1.125rem; - // font-weight: 200; - line-height: 1.8; -} - -.font-light { - font-weight: $font-weight-light; -} - -.font-regular { - font-weight: $font-weight-regular; -} - -.font-heavy { - font-weight: $font-weight-heavy; -} - -// utility - -.left { - text-align: left; -} - -.right { - text-align: right; -} - -.center { - text-align: center; - margin-left: auto; - margin-right: auto; -} - -.justify { - text-align: justify; -} - -.hidden-sm { - display: none; -} - -// grid - -$width: 96%; -$gutter: 4%; -$breakpoint-small: 33.75em; // 540px -$breakpoint-med: 45em; // 720px -$breakpoint-large: 60em; // 960px - -.container { - width: 90%; - margin-left: auto; - margin-right: auto; - - @media only screen and (min-width: $breakpoint-small) { - width: 80%; - } - - @media only screen and (min-width: $breakpoint-large) { - width: 75%; - max-width: 60rem; - } -} - -.row { - position: relative; - width: 100%; -} - -.row [class^="col"] { - float: left; - margin: 0.5rem 2%; - min-height: 0.125rem; -} - -.row::after { - content: ""; - display: table; - clear: both; -} - -.col-1, -.col-2, -.col-3, -.col-4, -.col-5, -.col-6, -.col-7, -.col-8, -.col-9, -.col-10, -.col-11, -.col-12 { - width: $width; -} - -.col-1-sm { width:($width / 12) - ($gutter * 11 / 12); } -.col-2-sm { width: ($width / 6) - ($gutter * 10 / 12); } -.col-3-sm { width: ($width / 4) - ($gutter * 9 / 12); } -.col-4-sm { width: ($width / 3) - ($gutter * 8 / 12); } -.col-5-sm { width: ($width / (12 / 5)) - ($gutter * 7 / 12); } -.col-6-sm { width: ($width / 2) - ($gutter * 6 / 12); } -.col-7-sm { width: ($width / (12 / 7)) - ($gutter * 5 / 12); } -.col-8-sm { width: ($width / (12 / 8)) - ($gutter * 4 / 12); } -.col-9-sm { width: ($width / (12 / 9)) - ($gutter * 3 / 12); } -.col-10-sm { width: ($width / (12 / 10)) - ($gutter * 2 / 12); } -.col-11-sm { width: ($width / (12 / 11)) - ($gutter * 1 / 12); } -.col-12-sm { width: $width; } - -@media only screen and (min-width: $breakpoint-med) { - .col-1 { width:($width / 12) - ($gutter * 11 / 12); } - .col-2 { width: ($width / 6) - ($gutter * 10 / 12); } - .col-3 { width: ($width / 4) - ($gutter * 9 / 12); } - .col-4 { width: ($width / 3) - ($gutter * 8 / 12); } - .col-5 { width: ($width / (12 / 5)) - ($gutter * 7 / 12); } - .col-6 { width: ($width / 2) - ($gutter * 6 / 12); } - .col-7 { width: ($width / (12 / 7)) - ($gutter * 5 / 12); } - .col-8 { width: ($width / (12 / 8)) - ($gutter * 4 / 12); } - .col-9 { width: ($width / (12 / 9)) - ($gutter * 3 / 12); } - .col-10 { width: ($width / (12 / 10)) - ($gutter * 2 / 12); } - .col-11 { width: ($width / (12 / 11)) - ($gutter * 1 / 12); } - .col-12 { width: $width; } - - .hidden-sm { - display: block; - } -} diff --git a/sass/main.scss b/sass/main.scss index 47554a0..73c3e2b 100644 --- a/sass/main.scss +++ b/sass/main.scss @@ -1,164 +1,42 @@ -@import "breakpoints.scss"; -@import "colors.scss"; -@import "fonts.scss"; -@import "mixins.scss"; -@import "simple-grid.scss"; @import "syntax.scss"; -body { - background-color: #f8f8f8; - font-family: "Roboto", sans-serif; - font-weight: 300; +html { + background-color: lightskyblue; } -* { - box-sizing: border-box; +body { + max-width: 850px; + margin: auto; + background-color: white; + min-height: 100%; + padding-bottom: 20px; +} + +#header { + border-bottom: 4px solid lightskyblue; + box-sizing: border-box; + padding: 20px; + margin-bottom: 12px; + + #title { + font-size: 2em; + color: black; + + &:hover { + text-decoration: none; + } + } } a { - color: $brand; - text-decoration: none; -} + color: royalblue; + text-decoration: none; -small { - font-weight: 200; -} - -.content a { - @include colored-link(1px, $brand); -} - -.brand-colorlink:not(.nocolorlink) { - @include colored-link(1px, $brand); -} - -.colorlink:not(.nocolorlink) { - @include colored-link(1px, #000); -} - -h1, -h2, -h3, -h4, -h5, -h6 { - font-weight: 700; -} - -*::selection { - background-color: $brand; - color: #f0f0f0; -} - -pre, -code { - font-weight: 400; - * { - font-family: "RobotoMono", monospace; - } - padding: 5px; - margin: 5px; - border-radius: 5px; -} - -code { - background-color: #f9f2f4; - color: #c7254e; -} - -pre:not(.highlight) { - code { - color: #e83e8c; - } + &:hover { + text-decoration: underline; + } } pre { - border: 1px solid #000; - border-radius: 3px; - overflow-x: auto; -} - -#navbar .link { - margin-right: 20px; -} - -header { - padding-bottom: 32px; - padding-top: 30px; - border-top: 10px solid $brand; - list-style-type: none; - font-size: 1.3em; - background: #e8e8e8; - background: linear-gradient(#e8e8e8 0%, #f8f8f8 100%); - @include media-breakpoint-down(sm) { - padding-bottom: 0; - } - a.title { - @include media-breakpoint-down(sm) { - display: block; - text-align: center; - margin-right: 0; - margin-bottom: 20px; - font-size: 2em; - } - margin-right: 30px; - color: $brand; - font-size: 1.2em; - font-weight: 300; - } - div#nav { - display: inline; - } - @include media-breakpoint-down(sm) { - div#nav { - text-align: center; - display: block; - margin: auto; - } - } - a.link { - @include colored-link(1px, black); - margin-left: 10px; - margin-right: 10px; - } -} - -#content { - table { - border: 1px solid rgba(0, 0, 0, 0.5); - border-spacing: 0; - padding: 0; - - thead { - th { - background-color: rgba(0, 0, 0, 0.5); - padding: 8px 12px ; - color: white; - } - } - - tbody { - td { - padding: 8px 12px; - } - - tr:nth-child(even) { - background-color: rgba(255, 255, 255, 0.5); - } - tr:nth-child(odd) { - background-color: rgba(204, 204, 204, 0.5); - } - } - } -} - -.toc { - background-color: #f0f0f0; - padding: 16px; - - ul { - line-height: 0; - margin: 0; - padding-left: 18px; - } + padding: 5px; } diff --git a/static/fonts/Roboto/LICENSE.txt b/static/fonts/Roboto/LICENSE.txt deleted file mode 100644 index 75b5248..0000000 --- a/static/fonts/Roboto/LICENSE.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/static/fonts/Roboto/Roboto-Black.ttf b/static/fonts/Roboto/Roboto-Black.ttf deleted file mode 100644 index 689fe5c..0000000 Binary files a/static/fonts/Roboto/Roboto-Black.ttf and /dev/null differ diff --git a/static/fonts/Roboto/Roboto-BlackItalic.ttf b/static/fonts/Roboto/Roboto-BlackItalic.ttf deleted file mode 100644 index 0b4e0ee..0000000 Binary files a/static/fonts/Roboto/Roboto-BlackItalic.ttf and /dev/null differ diff --git a/static/fonts/Roboto/Roboto-Bold.ttf b/static/fonts/Roboto/Roboto-Bold.ttf deleted file mode 100644 index d3f01ad..0000000 Binary files a/static/fonts/Roboto/Roboto-Bold.ttf and /dev/null differ diff --git a/static/fonts/Roboto/Roboto-BoldItalic.ttf b/static/fonts/Roboto/Roboto-BoldItalic.ttf deleted file mode 100644 index 41cc1e7..0000000 Binary files a/static/fonts/Roboto/Roboto-BoldItalic.ttf and /dev/null differ diff --git a/static/fonts/Roboto/Roboto-Italic.ttf b/static/fonts/Roboto/Roboto-Italic.ttf deleted file mode 100644 index 6a1cee5..0000000 Binary files a/static/fonts/Roboto/Roboto-Italic.ttf and /dev/null differ diff --git a/static/fonts/Roboto/Roboto-Light.ttf b/static/fonts/Roboto/Roboto-Light.ttf deleted file mode 100644 index 219063a..0000000 Binary files a/static/fonts/Roboto/Roboto-Light.ttf and /dev/null differ diff --git a/static/fonts/Roboto/Roboto-LightItalic.ttf b/static/fonts/Roboto/Roboto-LightItalic.ttf deleted file mode 100644 index 0e81e87..0000000 Binary files a/static/fonts/Roboto/Roboto-LightItalic.ttf and /dev/null differ diff --git a/static/fonts/Roboto/Roboto-Medium.ttf b/static/fonts/Roboto/Roboto-Medium.ttf deleted file mode 100644 index 1a7f3b0..0000000 Binary files a/static/fonts/Roboto/Roboto-Medium.ttf and /dev/null differ diff --git a/static/fonts/Roboto/Roboto-MediumItalic.ttf b/static/fonts/Roboto/Roboto-MediumItalic.ttf deleted file mode 100644 index 0030295..0000000 Binary files a/static/fonts/Roboto/Roboto-MediumItalic.ttf and /dev/null differ diff --git a/static/fonts/Roboto/Roboto-Regular.ttf b/static/fonts/Roboto/Roboto-Regular.ttf deleted file mode 100644 index 2c97eea..0000000 Binary files a/static/fonts/Roboto/Roboto-Regular.ttf and /dev/null differ diff --git a/static/fonts/Roboto/Roboto-Thin.ttf b/static/fonts/Roboto/Roboto-Thin.ttf deleted file mode 100644 index b74a4fd..0000000 Binary files a/static/fonts/Roboto/Roboto-Thin.ttf and /dev/null differ diff --git a/static/fonts/Roboto/Roboto-ThinItalic.ttf b/static/fonts/Roboto/Roboto-ThinItalic.ttf deleted file mode 100644 index dd0ddb8..0000000 Binary files a/static/fonts/Roboto/Roboto-ThinItalic.ttf and /dev/null differ diff --git a/static/fonts/RobotoMono/LICENSE.txt b/static/fonts/RobotoMono/LICENSE.txt deleted file mode 100644 index 75b5248..0000000 --- a/static/fonts/RobotoMono/LICENSE.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/static/fonts/RobotoMono/RobotoMono-Bold.ttf b/static/fonts/RobotoMono/RobotoMono-Bold.ttf deleted file mode 100644 index 07ef607..0000000 Binary files a/static/fonts/RobotoMono/RobotoMono-Bold.ttf and /dev/null differ diff --git a/static/fonts/RobotoMono/RobotoMono-BoldItalic.ttf b/static/fonts/RobotoMono/RobotoMono-BoldItalic.ttf deleted file mode 100644 index 1cca0bf..0000000 Binary files a/static/fonts/RobotoMono/RobotoMono-BoldItalic.ttf and /dev/null differ diff --git a/static/fonts/RobotoMono/RobotoMono-Italic.ttf b/static/fonts/RobotoMono/RobotoMono-Italic.ttf deleted file mode 100644 index ef92c37..0000000 Binary files a/static/fonts/RobotoMono/RobotoMono-Italic.ttf and /dev/null differ diff --git a/static/fonts/RobotoMono/RobotoMono-Light.ttf b/static/fonts/RobotoMono/RobotoMono-Light.ttf deleted file mode 100644 index 63229b2..0000000 Binary files a/static/fonts/RobotoMono/RobotoMono-Light.ttf and /dev/null differ diff --git a/static/fonts/RobotoMono/RobotoMono-LightItalic.ttf b/static/fonts/RobotoMono/RobotoMono-LightItalic.ttf deleted file mode 100644 index f25bed5..0000000 Binary files a/static/fonts/RobotoMono/RobotoMono-LightItalic.ttf and /dev/null differ diff --git a/static/fonts/RobotoMono/RobotoMono-Medium.ttf b/static/fonts/RobotoMono/RobotoMono-Medium.ttf deleted file mode 100644 index 88ff0c1..0000000 Binary files a/static/fonts/RobotoMono/RobotoMono-Medium.ttf and /dev/null differ diff --git a/static/fonts/RobotoMono/RobotoMono-MediumItalic.ttf b/static/fonts/RobotoMono/RobotoMono-MediumItalic.ttf deleted file mode 100644 index 307efad..0000000 Binary files a/static/fonts/RobotoMono/RobotoMono-MediumItalic.ttf and /dev/null differ diff --git a/static/fonts/RobotoMono/RobotoMono-Regular.ttf b/static/fonts/RobotoMono/RobotoMono-Regular.ttf deleted file mode 100644 index b158a33..0000000 Binary files a/static/fonts/RobotoMono/RobotoMono-Regular.ttf and /dev/null differ diff --git a/static/fonts/RobotoMono/RobotoMono-Thin.ttf b/static/fonts/RobotoMono/RobotoMono-Thin.ttf deleted file mode 100644 index 309484d..0000000 Binary files a/static/fonts/RobotoMono/RobotoMono-Thin.ttf and /dev/null differ diff --git a/static/fonts/RobotoMono/RobotoMono-ThinItalic.ttf b/static/fonts/RobotoMono/RobotoMono-ThinItalic.ttf deleted file mode 100644 index e1bb912..0000000 Binary files a/static/fonts/RobotoMono/RobotoMono-ThinItalic.ttf and /dev/null differ diff --git a/templates/macros/layout.html b/templates/macros/layout.html index 38aed6d..05137a0 100644 --- a/templates/macros/layout.html +++ b/templates/macros/layout.html @@ -1,9 +1,10 @@ {% macro navbar(config) %} -
- {{ config.title }} +