diff --git a/Kyoo/ClientApp/src/app/app.module.ts b/Kyoo/ClientApp/src/app/app.module.ts index 87eb143e..eb565883 100644 --- a/Kyoo/ClientApp/src/app/app.module.ts +++ b/Kyoo/ClientApp/src/app/app.module.ts @@ -11,7 +11,6 @@ import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { MatSnackBarModule } from '@angular/material/snack-bar'; import { MatProgressBarModule } from '@angular/material/progress-bar'; import { MatButtonModule } from '@angular/material/button'; -import { MatDividerModule } from '@angular/material/divider'; import { MatIconModule } from '@angular/material/icon'; @NgModule({ @@ -29,7 +28,6 @@ import { MatIconModule } from '@angular/material/icon'; MatSnackBarModule, MatProgressBarModule, MatButtonModule, - MatDividerModule, MatIconModule ], providers: [], diff --git a/Kyoo/ClientApp/src/app/show-details/show-details.component.html b/Kyoo/ClientApp/src/app/show-details/show-details.component.html index 1f5aa36b..e033809d 100644 --- a/Kyoo/ClientApp/src/app/show-details/show-details.component.html +++ b/Kyoo/ClientApp/src/app/show-details/show-details.component.html @@ -5,9 +5,9 @@
-

{{this.show.title}}

-

{{show.startYear}} - {{show.endYear}}

-

{{show.startYear}}

+

{{this.show.title}}

+

{{show.startYear}} - {{show.endYear}}

+

{{show.startYear}}

-
- -

Staff

-
- -
- - -

{{people.name}}

-

{{people.role}}

-
+ diff --git a/Kyoo/ClientApp/src/app/show-details/show-details.component.scss b/Kyoo/ClientApp/src/app/show-details/show-details.component.scss index 3e1867ba..00de7e11 100644 --- a/Kyoo/ClientApp/src/app/show-details/show-details.component.scss +++ b/Kyoo/ClientApp/src/app/show-details/show-details.component.scss @@ -62,6 +62,16 @@ a { margin-top: 0; } + + .title + { + font-weight: 900 !important; + } + + .date + { + font-weight: 300 !important; + } } .buttons @@ -74,113 +84,121 @@ a } } - .secondary +.secondary +{ + position: relative; + + > img { - position: relative; - - > img - { - max-width: 100%; - } - - > div - { - position: absolute; - bottom: 0; - } + max-width: 100%; } - .overview + > div { - @include media-breakpoint-up(sm) - { - padding-top: 2.25rem; - } + position: absolute; + bottom: 0; + } +} + +.overview +{ + @include media-breakpoint-up(sm) + { + padding-top: 2.25rem; + } +} + +hr +{ + margin: 0 10px 0 10px; + border-right: 1px solid rgba(255, 255, 255, .60); + border-top: 0; + height: inherit; +} + +.people-container +{ + display: flex; + overflow: hidden; +} + +.people +{ + width: 15%; + margin: 1em; + text-decoration: none; + color: inherit; + outline: none; + flex-shrink: 0; + flex-grow: 0; + /*@include media-breakpoint-up(md) +{ + width: 25%; +} + +@include media-breakpoint-up(lg) +{ + width: 20%; +} + +@include media-breakpoint-up(xl) +{ + width: 18%; +}*/ + /*&:focus, &:hover +{ + > img + { + outline: solid var(--accentColor); } - .people-container + > .title { - display: flex; + text-decoration: underline; + } +}*/ + > img + { + width: 100%; + height: 0; + padding-top: 147.0588%; + background-size: cover; + background-color: #333333; + } + + > p + { + white-space: nowrap; overflow: hidden; - } + text-overflow: ellipsis; + text-align: center; + margin-bottom: 0px; - .people - { - width: 15%; - margin: 1em; - text-decoration: none; - color: inherit; - outline: none; - flex-shrink: 0; - flex-grow: 0; - /*@include media-breakpoint-up(md) - { - width: 25%; - } - - @include media-breakpoint-up(lg) - { - width: 20%; - } - - @include media-breakpoint-up(xl) - { - width: 18%; - }*/ - /*&:focus, &:hover - { - > img + &.role { - outline: solid var(--accentColor); - } - - > .title - { - text-decoration: underline; - } - }*/ - > img - { - width: 100%; - height: 0; - padding-top: 147.0588%; - background-size: cover; - background-color: #333333; - } - - > p - { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - text-align: center; - margin-bottom: 0px; - - &.role - { - opacity: 0.8; - font-size: 0.8em; - } - } - - &:hover - { - cursor: pointer; + opacity: 0.8; + font-size: 0.8em; } } - #leftBtn + &:hover { - position: absolute; - left: 0; - top: 33%; - outline: none; + cursor: pointer; } +} - #rightBtn - { - position: absolute; - right: 0; - top: 33%; - outline: none; - } +#leftBtn +{ + position: absolute; + left: 0; + top: 33%; + outline: none; +} + +#rightBtn +{ + position: absolute; + right: 0; + top: 33%; + outline: none; +} diff --git a/Kyoo/ClientApp/src/app/show-details/show-details.component.ts b/Kyoo/ClientApp/src/app/show-details/show-details.component.ts index c2e5a4f9..95494b99 100644 --- a/Kyoo/ClientApp/src/app/show-details/show-details.component.ts +++ b/Kyoo/ClientApp/src/app/show-details/show-details.component.ts @@ -19,8 +19,6 @@ export class ShowDetailsComponent implements OnInit ngOnInit() { this.show = this.route.snapshot.data.show; - //document.body.style.backgroundImage = "url(/backdrop/" + this.show.slug + ")"; - this.toolbar = document.getElementById("toolbar"); this.backdrop = document.getElementById("backdrop"); @@ -33,7 +31,7 @@ export class ShowDetailsComponent implements OnInit window.removeEventListener("scroll", this.scroll, true); } - scroll = (event) => + scroll = () => { let opacity: number = 2 * window.scrollY / this.backdrop.clientHeight; this.toolbar.setAttribute("style", `background-color: rgba(0, 0, 0, ${opacity}) !important`); @@ -45,9 +43,4 @@ export class ShowDetailsComponent implements OnInit { return this.sanitizer.bypassSecurityTrustStyle("url(/peopleimg/" + slug + ")"); } - - getBackdrop() - { - return this.sanitizer.bypassSecurityTrustStyle("url(/backdrop/" + this.show.slug + ")"); - } } diff --git a/Kyoo/ClientApp/src/styles.scss b/Kyoo/ClientApp/src/styles.scss index 219d3591..ec7ba405 100644 --- a/Kyoo/ClientApp/src/styles.scss +++ b/Kyoo/ClientApp/src/styles.scss @@ -1,13 +1,5 @@ //Roboto font -@font-face -{ - font-family: "Roboto"; - src: url(/roboto/Roboto.eot); /* IE9 Compat Modes */ - src: url(/roboto/roboto.eot?#iefix) format("embedded-opentype"), /* IE6-IE8 */ - url(/roboto/roboto.woff) format("woff"), /* Modern Browsers */ - url(/roboto/roboto.ttf) format("truetype"), /* Safari, Android, iOS */ - url(/roboto/roboto.svg#svgFontName) format("svg"); /* Legacy iOS */ -} +@import "../../wwwroot/roboto/sass/roboto.scss"; //Bootstrap configuration @import "~bootstrap/scss/functions"; @@ -22,13 +14,13 @@ $theme-colors: ( $body-bg: theme-color("primary"); $body-color: theme-color("textPrimary"); -body +$font-family-base: "Roboto", Arial, sans-serif; + +/*body { background-repeat: no-repeat; background-attachment: fixed; - font-family: 'Roboto', sans-serif; -} - +}*/ @import "~bootstrap/scss/bootstrap"; diff --git a/Kyoo/Kyoo.csproj b/Kyoo/Kyoo.csproj index 473d96ed..faff7919 100644 --- a/Kyoo/Kyoo.csproj +++ b/Kyoo/Kyoo.csproj @@ -39,6 +39,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Kyoo/wwwroot/roboto/LICENSE.txt b/Kyoo/wwwroot/roboto/LICENSE.txt deleted file mode 100644 index d6456956..00000000 --- a/Kyoo/wwwroot/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/Kyoo/wwwroot/roboto/Roboto-Black.ttf b/Kyoo/wwwroot/roboto/Roboto-Black.ttf deleted file mode 100644 index 2d452383..00000000 Binary files a/Kyoo/wwwroot/roboto/Roboto-Black.ttf and /dev/null differ diff --git a/Kyoo/wwwroot/roboto/Roboto-BlackItalic.ttf b/Kyoo/wwwroot/roboto/Roboto-BlackItalic.ttf deleted file mode 100644 index 29a4359e..00000000 Binary files a/Kyoo/wwwroot/roboto/Roboto-BlackItalic.ttf and /dev/null differ diff --git a/Kyoo/wwwroot/roboto/Roboto-Bold.ttf b/Kyoo/wwwroot/roboto/Roboto-Bold.ttf deleted file mode 100644 index d998cf5b..00000000 Binary files a/Kyoo/wwwroot/roboto/Roboto-Bold.ttf and /dev/null differ diff --git a/Kyoo/wwwroot/roboto/Roboto-BoldItalic.ttf b/Kyoo/wwwroot/roboto/Roboto-BoldItalic.ttf deleted file mode 100644 index b4e22103..00000000 Binary files a/Kyoo/wwwroot/roboto/Roboto-BoldItalic.ttf and /dev/null differ diff --git a/Kyoo/wwwroot/roboto/Roboto-Light.ttf b/Kyoo/wwwroot/roboto/Roboto-Light.ttf deleted file mode 100644 index 35267989..00000000 Binary files a/Kyoo/wwwroot/roboto/Roboto-Light.ttf and /dev/null differ diff --git a/Kyoo/wwwroot/roboto/Roboto-LightItalic.ttf b/Kyoo/wwwroot/roboto/Roboto-LightItalic.ttf deleted file mode 100644 index 46e9bf7c..00000000 Binary files a/Kyoo/wwwroot/roboto/Roboto-LightItalic.ttf and /dev/null differ diff --git a/Kyoo/wwwroot/roboto/Roboto-Medium.ttf b/Kyoo/wwwroot/roboto/Roboto-Medium.ttf deleted file mode 100644 index f714a514..00000000 Binary files a/Kyoo/wwwroot/roboto/Roboto-Medium.ttf and /dev/null differ diff --git a/Kyoo/wwwroot/roboto/Roboto-MediumItalic.ttf b/Kyoo/wwwroot/roboto/Roboto-MediumItalic.ttf deleted file mode 100644 index 5dc6a2dc..00000000 Binary files a/Kyoo/wwwroot/roboto/Roboto-MediumItalic.ttf and /dev/null differ diff --git a/Kyoo/wwwroot/roboto/Roboto-Regular.ttf b/Kyoo/wwwroot/roboto/Roboto-Regular.ttf deleted file mode 100644 index 2b6392ff..00000000 Binary files a/Kyoo/wwwroot/roboto/Roboto-Regular.ttf and /dev/null differ diff --git a/Kyoo/wwwroot/roboto/Roboto-RegularItalic.ttf b/Kyoo/wwwroot/roboto/Roboto-RegularItalic.ttf deleted file mode 100644 index 5b390ff9..00000000 Binary files a/Kyoo/wwwroot/roboto/Roboto-RegularItalic.ttf and /dev/null differ diff --git a/Kyoo/wwwroot/roboto/Roboto-Thin.ttf b/Kyoo/wwwroot/roboto/Roboto-Thin.ttf deleted file mode 100644 index 4e797cf7..00000000 Binary files a/Kyoo/wwwroot/roboto/Roboto-Thin.ttf and /dev/null differ diff --git a/Kyoo/wwwroot/roboto/Roboto-ThinItalic.ttf b/Kyoo/wwwroot/roboto/Roboto-ThinItalic.ttf deleted file mode 100644 index eea836f4..00000000 Binary files a/Kyoo/wwwroot/roboto/Roboto-ThinItalic.ttf and /dev/null differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-100-italic.ttf b/Kyoo/wwwroot/roboto/fonts/roboto-100-italic.ttf new file mode 100644 index 00000000..17066fe0 Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-100-italic.ttf differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-100-italic.woff b/Kyoo/wwwroot/roboto/fonts/roboto-100-italic.woff new file mode 100644 index 00000000..eab02710 Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-100-italic.woff differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-100-italic.woff2 b/Kyoo/wwwroot/roboto/fonts/roboto-100-italic.woff2 new file mode 100644 index 00000000..f00aafcb Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-100-italic.woff2 differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-100-normal.ttf b/Kyoo/wwwroot/roboto/fonts/roboto-100-normal.ttf new file mode 100644 index 00000000..883f769d Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-100-normal.ttf differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-100-normal.woff b/Kyoo/wwwroot/roboto/fonts/roboto-100-normal.woff new file mode 100644 index 00000000..e1156927 Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-100-normal.woff differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-100-normal.woff2 b/Kyoo/wwwroot/roboto/fonts/roboto-100-normal.woff2 new file mode 100644 index 00000000..a26400d7 Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-100-normal.woff2 differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-300-italic.ttf b/Kyoo/wwwroot/roboto/fonts/roboto-300-italic.ttf new file mode 100644 index 00000000..8c36d0d8 Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-300-italic.ttf differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-300-italic.woff b/Kyoo/wwwroot/roboto/fonts/roboto-300-italic.woff new file mode 100644 index 00000000..07117c57 Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-300-italic.woff differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-300-italic.woff2 b/Kyoo/wwwroot/roboto/fonts/roboto-300-italic.woff2 new file mode 100644 index 00000000..5fa7eed3 Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-300-italic.woff2 differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-300-normal.ttf b/Kyoo/wwwroot/roboto/fonts/roboto-300-normal.ttf new file mode 100644 index 00000000..67194b52 Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-300-normal.ttf differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-300-normal.woff b/Kyoo/wwwroot/roboto/fonts/roboto-300-normal.woff new file mode 100644 index 00000000..404afbab Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-300-normal.woff differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-300-normal.woff2 b/Kyoo/wwwroot/roboto/fonts/roboto-300-normal.woff2 new file mode 100644 index 00000000..5f26201d Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-300-normal.woff2 differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-400-italic.ttf b/Kyoo/wwwroot/roboto/fonts/roboto-400-italic.ttf new file mode 100644 index 00000000..df9dac52 Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-400-italic.ttf differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-400-italic.woff b/Kyoo/wwwroot/roboto/fonts/roboto-400-italic.woff new file mode 100644 index 00000000..60f95dde Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-400-italic.woff differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-400-italic.woff2 b/Kyoo/wwwroot/roboto/fonts/roboto-400-italic.woff2 new file mode 100644 index 00000000..75495c3f Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-400-italic.woff2 differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-400-normal.ttf b/Kyoo/wwwroot/roboto/fonts/roboto-400-normal.ttf new file mode 100644 index 00000000..bcaeba19 Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-400-normal.ttf differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-400-normal.woff b/Kyoo/wwwroot/roboto/fonts/roboto-400-normal.woff new file mode 100644 index 00000000..2f53e7c6 Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-400-normal.woff differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-400-normal.woff2 b/Kyoo/wwwroot/roboto/fonts/roboto-400-normal.woff2 new file mode 100644 index 00000000..1d1539e4 Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-400-normal.woff2 differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-500-italic.ttf b/Kyoo/wwwroot/roboto/fonts/roboto-500-italic.ttf new file mode 100644 index 00000000..5976a8bd Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-500-italic.ttf differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-500-italic.woff b/Kyoo/wwwroot/roboto/fonts/roboto-500-italic.woff new file mode 100644 index 00000000..2be7d894 Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-500-italic.woff differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-500-italic.woff2 b/Kyoo/wwwroot/roboto/fonts/roboto-500-italic.woff2 new file mode 100644 index 00000000..9b7b828c Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-500-italic.woff2 differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-500-normal.ttf b/Kyoo/wwwroot/roboto/fonts/roboto-500-normal.ttf new file mode 100644 index 00000000..a3c8563a Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-500-normal.ttf differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-500-normal.woff b/Kyoo/wwwroot/roboto/fonts/roboto-500-normal.woff new file mode 100644 index 00000000..b18e6b8a Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-500-normal.woff differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-500-normal.woff2 b/Kyoo/wwwroot/roboto/fonts/roboto-500-normal.woff2 new file mode 100644 index 00000000..f9f6913b Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-500-normal.woff2 differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-700-italic.ttf b/Kyoo/wwwroot/roboto/fonts/roboto-700-italic.ttf new file mode 100644 index 00000000..a4aa1a70 Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-700-italic.ttf differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-700-italic.woff b/Kyoo/wwwroot/roboto/fonts/roboto-700-italic.woff new file mode 100644 index 00000000..f1d7598e Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-700-italic.woff differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-700-italic.woff2 b/Kyoo/wwwroot/roboto/fonts/roboto-700-italic.woff2 new file mode 100644 index 00000000..c91e0f8f Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-700-italic.woff2 differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-700-normal.ttf b/Kyoo/wwwroot/roboto/fonts/roboto-700-normal.ttf new file mode 100644 index 00000000..865ddca4 Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-700-normal.ttf differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-700-normal.woff b/Kyoo/wwwroot/roboto/fonts/roboto-700-normal.woff new file mode 100644 index 00000000..93a1d5aa Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-700-normal.woff differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-700-normal.woff2 b/Kyoo/wwwroot/roboto/fonts/roboto-700-normal.woff2 new file mode 100644 index 00000000..715ac191 Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-700-normal.woff2 differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-900-italic.ttf b/Kyoo/wwwroot/roboto/fonts/roboto-900-italic.ttf new file mode 100644 index 00000000..f699cf5b Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-900-italic.ttf differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-900-italic.woff b/Kyoo/wwwroot/roboto/fonts/roboto-900-italic.woff new file mode 100644 index 00000000..609bdf43 Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-900-italic.woff differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-900-italic.woff2 b/Kyoo/wwwroot/roboto/fonts/roboto-900-italic.woff2 new file mode 100644 index 00000000..5cb417b0 Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-900-italic.woff2 differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-900-normal.ttf b/Kyoo/wwwroot/roboto/fonts/roboto-900-normal.ttf new file mode 100644 index 00000000..8d9864fa Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-900-normal.ttf differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-900-normal.woff b/Kyoo/wwwroot/roboto/fonts/roboto-900-normal.woff new file mode 100644 index 00000000..9b727794 Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-900-normal.woff differ diff --git a/Kyoo/wwwroot/roboto/fonts/roboto-900-normal.woff2 b/Kyoo/wwwroot/roboto/fonts/roboto-900-normal.woff2 new file mode 100644 index 00000000..9559f021 Binary files /dev/null and b/Kyoo/wwwroot/roboto/fonts/roboto-900-normal.woff2 differ diff --git a/Kyoo/wwwroot/roboto/sass/roboto-100-italic.scss b/Kyoo/wwwroot/roboto/sass/roboto-100-italic.scss new file mode 100644 index 00000000..47ec9656 --- /dev/null +++ b/Kyoo/wwwroot/roboto/sass/roboto-100-italic.scss @@ -0,0 +1,3 @@ +@import "roboto-mixin"; + +@include roboto-font(100, italic); \ No newline at end of file diff --git a/Kyoo/wwwroot/roboto/sass/roboto-100-normal.scss b/Kyoo/wwwroot/roboto/sass/roboto-100-normal.scss new file mode 100644 index 00000000..fdfce368 --- /dev/null +++ b/Kyoo/wwwroot/roboto/sass/roboto-100-normal.scss @@ -0,0 +1,3 @@ +@import "roboto-mixin"; + +@include roboto-font(100, normal); \ No newline at end of file diff --git a/Kyoo/wwwroot/roboto/sass/roboto-300-italic.scss b/Kyoo/wwwroot/roboto/sass/roboto-300-italic.scss new file mode 100644 index 00000000..9a106d1a --- /dev/null +++ b/Kyoo/wwwroot/roboto/sass/roboto-300-italic.scss @@ -0,0 +1,3 @@ +@import "roboto-mixin"; + +@include roboto-font(300, italic); diff --git a/Kyoo/wwwroot/roboto/sass/roboto-300-normal.scss b/Kyoo/wwwroot/roboto/sass/roboto-300-normal.scss new file mode 100644 index 00000000..c1c05ebc --- /dev/null +++ b/Kyoo/wwwroot/roboto/sass/roboto-300-normal.scss @@ -0,0 +1,3 @@ +@import "roboto-mixin"; + +@include roboto-font(300, normal); diff --git a/Kyoo/wwwroot/roboto/sass/roboto-400-italic.scss b/Kyoo/wwwroot/roboto/sass/roboto-400-italic.scss new file mode 100644 index 00000000..32cfbf8f --- /dev/null +++ b/Kyoo/wwwroot/roboto/sass/roboto-400-italic.scss @@ -0,0 +1,3 @@ +@import "roboto-mixin"; + +@include roboto-font(400, italic); diff --git a/Kyoo/wwwroot/roboto/sass/roboto-400-normal.scss b/Kyoo/wwwroot/roboto/sass/roboto-400-normal.scss new file mode 100644 index 00000000..650cfca5 --- /dev/null +++ b/Kyoo/wwwroot/roboto/sass/roboto-400-normal.scss @@ -0,0 +1,3 @@ +@import "roboto-mixin"; + +@include roboto-font(400, normal); diff --git a/Kyoo/wwwroot/roboto/sass/roboto-500-italic.scss b/Kyoo/wwwroot/roboto/sass/roboto-500-italic.scss new file mode 100644 index 00000000..b94d66b8 --- /dev/null +++ b/Kyoo/wwwroot/roboto/sass/roboto-500-italic.scss @@ -0,0 +1,3 @@ +@import "roboto-mixin"; + +@include roboto-font(500, italic); diff --git a/Kyoo/wwwroot/roboto/sass/roboto-500-normal.scss b/Kyoo/wwwroot/roboto/sass/roboto-500-normal.scss new file mode 100644 index 00000000..127ec7c4 --- /dev/null +++ b/Kyoo/wwwroot/roboto/sass/roboto-500-normal.scss @@ -0,0 +1,3 @@ +@import "roboto-mixin"; + +@include roboto-font(500, normal); diff --git a/Kyoo/wwwroot/roboto/sass/roboto-700-italic.scss b/Kyoo/wwwroot/roboto/sass/roboto-700-italic.scss new file mode 100644 index 00000000..122d43b1 --- /dev/null +++ b/Kyoo/wwwroot/roboto/sass/roboto-700-italic.scss @@ -0,0 +1,3 @@ +@import "roboto-mixin"; + +@include roboto-font(700, italic); diff --git a/Kyoo/wwwroot/roboto/sass/roboto-700-normal.scss b/Kyoo/wwwroot/roboto/sass/roboto-700-normal.scss new file mode 100644 index 00000000..70c4b9a0 --- /dev/null +++ b/Kyoo/wwwroot/roboto/sass/roboto-700-normal.scss @@ -0,0 +1,3 @@ +@import "roboto-mixin"; + +@include roboto-font(700, normal); diff --git a/Kyoo/wwwroot/roboto/sass/roboto-900-italic.scss b/Kyoo/wwwroot/roboto/sass/roboto-900-italic.scss new file mode 100644 index 00000000..407ed385 --- /dev/null +++ b/Kyoo/wwwroot/roboto/sass/roboto-900-italic.scss @@ -0,0 +1,3 @@ +@import "roboto-mixin"; + +@include roboto-font(900, italic); diff --git a/Kyoo/wwwroot/roboto/sass/roboto-900-normal.scss b/Kyoo/wwwroot/roboto/sass/roboto-900-normal.scss new file mode 100644 index 00000000..7569c0ce --- /dev/null +++ b/Kyoo/wwwroot/roboto/sass/roboto-900-normal.scss @@ -0,0 +1,3 @@ +@import "roboto-mixin"; + +@include roboto-font(900, normal); diff --git a/Kyoo/wwwroot/roboto/sass/roboto-mixin.scss b/Kyoo/wwwroot/roboto/sass/roboto-mixin.scss new file mode 100644 index 00000000..ce179120 --- /dev/null +++ b/Kyoo/wwwroot/roboto/sass/roboto-mixin.scss @@ -0,0 +1,14 @@ + +$font: 'roboto'; + +@mixin roboto-font($weight, $style) { + + @font-face { + font-family: 'Roboto'; + src: url(/roboto/fonts/#{$font}-#{$weight}-#{$style}.woff2) format('woff2'), + url(/roboto/fonts/#{$font}-#{$weight}-#{$style}.woff) format('woff'), + url(/roboto/fonts/#{$font}-#{$weight}-#{$style}.ttf) format('truetype'); + font-weight: $weight; + font-style: $style; + }; +}; \ No newline at end of file diff --git a/Kyoo/wwwroot/roboto/sass/roboto.scss b/Kyoo/wwwroot/roboto/sass/roboto.scss new file mode 100644 index 00000000..0dd59d48 --- /dev/null +++ b/Kyoo/wwwroot/roboto/sass/roboto.scss @@ -0,0 +1,15 @@ + +// import all fonts + +@import "roboto-100-normal"; +@import "roboto-100-italic"; +@import "roboto-300-normal"; +@import "roboto-300-italic"; +@import "roboto-400-normal"; +@import "roboto-400-italic"; +@import "roboto-500-normal"; +@import "roboto-500-italic"; +@import "roboto-700-normal"; +@import "roboto-700-italic"; +@import "roboto-900-normal"; +@import "roboto-900-italic"; \ No newline at end of file