From 1bae88cd1327840155ee17f768c01b34bab3916f Mon Sep 17 00:00:00 2001 From: sandre Date: Fri, 22 Sep 2023 00:27:41 +0200 Subject: [PATCH] Style on the anchors --- .../skydivelogs-app/src/assets/css/styles.css | 21 ++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/Front/skydivelogs-app/src/assets/css/styles.css b/Front/skydivelogs-app/src/assets/css/styles.css index c19f6ee..f750bfe 100644 --- a/Front/skydivelogs-app/src/assets/css/styles.css +++ b/Front/skydivelogs-app/src/assets/css/styles.css @@ -13,4 +13,23 @@ body { mat-form-field{ width: 100%; -} \ No newline at end of file +} + +a { + background-color: red; + box-shadow: 0 5px 0 darkred; + color: white; + padding: 0.5em 0.5em; + position: relative; + text-decoration: none; + text-transform: uppercase; +} + +a:hover { + background-color: #ce0606; +} + +a:active { + box-shadow: none; + top: 5px; +}