diff options
-rw-r--r-- | CREDITS.md | 18 | ||||
-rw-r--r-- | client/src/app/app.component.html | 6 | ||||
-rw-r--r-- | client/src/app/app.component.scss | 11 |
3 files changed, 32 insertions, 3 deletions
diff --git a/CREDITS.md b/CREDITS.md new file mode 100644 index 000000000..a4e627c3c --- /dev/null +++ b/CREDITS.md | |||
@@ -0,0 +1,18 @@ | |||
1 | # Code | ||
2 | |||
3 | * [Chocobozzz](https://github.com/Chocobozzz) | ||
4 | * [dadall](https://github.com/dadall) | ||
5 | * [ldidry](https://github.com/ldidry) | ||
6 | * [faddat](https://github.com/faddat) | ||
7 | * [AugierLe42e](https://github.com/AugierLe42e) | ||
8 | |||
9 | # Design | ||
10 | |||
11 | Inspirations from: | ||
12 | |||
13 | * [Aurélien Salomon](https://dribbble.com/shots/1338727-Youtube-Redesign) | ||
14 | * [Adrien Thomas](https://dribbble.com/shots/1363194-YouTube-Redesign-Profil-page) | ||
15 | |||
16 | # Fonts | ||
17 | |||
18 | * [recharge by Typedermic Fonts](http://typodermicfonts.com) | ||
diff --git a/client/src/app/app.component.html b/client/src/app/app.component.html index 3f946d581..deccb2810 100644 --- a/client/src/app/app.component.html +++ b/client/src/app/app.component.html | |||
@@ -1,9 +1,9 @@ | |||
1 | <div class="container-fluid"> | 1 | <div class="container-fluid"> |
2 | <div class="row"> | 2 | <div class="row"> |
3 | <div class="col-md-2 col-sm-3 col-xs-3 title-menu-left"> | 3 | <div class="col-md-2 col-sm-3 col-xs-3 title-menu-left"> |
4 | <h4 id="peertube-title" class="title-menu-left-block header"> | 4 | <div id="peertube-title" class="title-menu-left-block header"> |
5 | <a [routerLink]="['/videos/list']">PeerTube</a> | 5 | <a [routerLink]="['/videos/list']" title="Homepage"></a> |
6 | </h4> | 6 | </div> |
7 | 7 | ||
8 | <div class="title-menu-left-block menu"> | 8 | <div class="title-menu-left-block menu"> |
9 | <my-menu *ngIf="isInAdmin() === false"></my-menu> | 9 | <my-menu *ngIf="isInAdmin() === false"></my-menu> |
diff --git a/client/src/app/app.component.scss b/client/src/app/app.component.scss index 2d0487cd8..f11552ef6 100644 --- a/client/src/app/app.component.scss +++ b/client/src/app/app.component.scss | |||
@@ -19,8 +19,19 @@ | |||
19 | margin-top: 0; | 19 | margin-top: 0; |
20 | margin-bottom: 0; | 20 | margin-bottom: 0; |
21 | 21 | ||
22 | display: flex; | ||
23 | flex-direction: column; | ||
24 | justify-content: center; | ||
25 | text-align: center; | ||
26 | |||
22 | a { | 27 | a { |
23 | color: inherit !important; | 28 | color: inherit !important; |
29 | display: block; | ||
30 | background: url(/client/assets/logo.png) no-repeat; | ||
31 | background-size: contain; | ||
32 | width: 180px; | ||
33 | height: 22px; | ||
34 | margin: auto; | ||
24 | 35 | ||
25 | &:hover { | 36 | &:hover { |
26 | color: inherit !important; | 37 | color: inherit !important; |