From 42c76141e6df79da62adc3213e6fca7637dcef19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Andr=C3=A9?= Date: Wed, 15 Jan 2020 17:04:26 +0100 Subject: [PATCH] Ajout de style sur les tableaux + ajout de transition sur la navigation --- .../skydivelogs-app/src/app/app.component.css | 24 ++++++++++--------- .../src/app/app.component.html | 2 +- .../skydivelogs-app/src/app/app.component.ts | 1 + .../list-of-aircrafts.component.css | 10 ++++++++ .../list-of-aircrafts.component.html | 2 +- .../list-of-dzs/list-of-dzs.component.html | 2 +- .../list-of-gears/list-of-gears.component.css | 10 ++++++++ .../list-of-gears.component.html | 2 +- .../list-of-jump-types.component.css | 10 ++++++++ .../list-of-jump-types.component.html | 2 +- .../list-of-jumps/list-of-jumps.component.css | 10 ++++++++ .../list-of-jumps.component.html | 2 +- .../src/app/new-jump/new-jump.component.css | 15 +++++++++--- .../src/app/new-jump/new-jump.component.html | 2 +- 14 files changed, 73 insertions(+), 21 deletions(-) diff --git a/Front/skydivelogs-app/src/app/app.component.css b/Front/skydivelogs-app/src/app/app.component.css index dfda4a8..9673883 100644 --- a/Front/skydivelogs-app/src/app/app.component.css +++ b/Front/skydivelogs-app/src/app/app.component.css @@ -1,5 +1,8 @@ body { margin: 10px; + color: #424242; + height: 600px; + overflow: auto; } .hamburger__icon { @@ -12,38 +15,37 @@ body { } .hamburger__icon__fill { - fill: #594e78 + fill: #424242 } -.side-menu-disactive { - display: none !important; -} - -.side-menu-active { - display: '' !important; +.navigation.side-menu-active { + left: 0px; } .navigation { - border: 1px red solid; position: absolute; width: 200px; overflow: hidden; z-index: 50; background-color: grey; + height: 600px; padding: 5px; - + left: -220px; + transition: 0.5s linear left; + -webkit-transition: 0.5s linear left; } .navigation ul { list-style: none; + padding: 0; } .navigation ul li { - margin: 5px; + margin: 10px; } .navigation ul li a { text-decoration: none; cursor: pointer; - color: black; + color: #424242; } diff --git a/Front/skydivelogs-app/src/app/app.component.html b/Front/skydivelogs-app/src/app/app.component.html index 7366528..bd02e3a 100644 --- a/Front/skydivelogs-app/src/app/app.component.html +++ b/Front/skydivelogs-app/src/app/app.component.html @@ -11,7 +11,7 @@

{{ title }}

-