From e8f7a7580037fbfa81ae333a18d648194521221d Mon Sep 17 00:00:00 2001 From: Patrick <patrick.wuerstle@gmx.de> Date: Thu, 29 Apr 2021 12:55:46 +0200 Subject: [PATCH] add Drag and Drop functionality to the Mobility Page --- public/css/main.css | 26 ++++++++++++++++++++++++++ public/index.html | 5 ++++- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/public/css/main.css b/public/css/main.css index 4bbc663..435fcd3 100644 --- a/public/css/main.css +++ b/public/css/main.css @@ -166,3 +166,29 @@ main[role=main]{ padding-bottom: 1rem!important; } +a { + text-decoration: none; + display: inline-block; + padding: 8px 16px; +} + +a:hover { + background-color: #ddd; + color: black; +} + +.previous { + background-color: #f1f1f1; + color: black; + margin-left:42%; + +} + +.next { + background-color: #04AA6D; + color: white; +} + +.round { + border-radius: 50%; +} \ No newline at end of file diff --git a/public/index.html b/public/index.html index b4a4da6..8c5abed 100644 --- a/public/index.html +++ b/public/index.html @@ -263,8 +263,11 @@ </div> </div> </div> + </div> - + <div class="container" style="margin-top:1em;"><a href="#" class="previous">« Previous</a> + <a href="#" class="next">Next »</a></div> + <hr> <div class="container"> <h2 id="rgc_ourteam"><i class="fas fa-user-friends"></i> Our amazing team</h2> -- GitLab