From fcf69961fcb1d5044d36667c6ba904c71bad8946 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 1 Oct 2020 20:46:28 +0200 Subject: Added overview --- overview/public/style.css | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 overview/public/style.css (limited to 'overview/public/style.css') diff --git a/overview/public/style.css b/overview/public/style.css new file mode 100644 index 0000000..5eddc9d --- /dev/null +++ b/overview/public/style.css @@ -0,0 +1,29 @@ +html, +body { + padding: 0; + margin: 0; + height: 100%; + width: 100%; + background-color: #eec0c6; + background-image: linear-gradient(315deg, #eec0c6 0%, #7ee8fa 74%); +} + +.card { + position: absolute; + max-height: 80%; + overflow-y: scroll; + width: 30%; + left: 50%; + top: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + padding: 20px; + border-radius: 10px; + background: white; +} + +@media only screen and (max-width: 600px) { + .card { + width: calc(100% - 50px); + } +} -- cgit v1.2.3