From 860213804208fe0f3f52716149c920b0d7538154 Mon Sep 17 00:00:00 2001 From: AkhilBarthwal005 <67703904+AkhilBarthwal005@users.noreply.github.com> Date: Thu, 29 Oct 2020 18:19:05 +0530 Subject: [PATCH] Update bookedAppointment.css --- .../src/components/css/bookedAppointment.css | 45 ++++++++++++++----- 1 file changed, 35 insertions(+), 10 deletions(-) diff --git a/frontend/src/components/css/bookedAppointment.css b/frontend/src/components/css/bookedAppointment.css index 4673add..ccc7a7c 100644 --- a/frontend/src/components/css/bookedAppointment.css +++ b/frontend/src/components/css/bookedAppointment.css @@ -1,13 +1,38 @@ -table, th, td { - border: 2px solid #a59f9f; - margin-right: auto; - margin-left: auto; - width: 75%; - padding: 5px 15px; - text-align: center; - border-spacing: 1.5px 1.5px; - border-collapse: collapse; + .container{ + margin: 100px 100px; + padding: 20px 0; + height: 100vh; + } th{ width: 100%; -} \ No newline at end of file +} +.btn{ + color: black; + background-color: red; + border-radius: 2; + border-radius: 10px; + font-size: 16px; + outline: none; + cursor: pointer; +} +.btn:hover{ + color: white; +} + th, td { + margin-right: auto; + margin-left: auto; + padding: 5px 15px; + text-align: center; +} +th{ + border-bottom: 2px solid black; +} +table{ + width: 75%; + display: block; + margin: auto; +} +tr:nth-child(even){ + background-color: rgb(180, 175, 175); +}