From e2c8fea877c156863dbf84f5593acf02894f56b5 Mon Sep 17 00:00:00 2001 From: LarsVomMars Date: Mon, 19 Oct 2020 19:40:35 +0200 Subject: User comments frontend --- profile/public/style.css | 55 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) (limited to 'profile/public/style.css') diff --git a/profile/public/style.css b/profile/public/style.css index 825cf24..600c2b5 100644 --- a/profile/public/style.css +++ b/profile/public/style.css @@ -44,3 +44,58 @@ img { width: calc(100% - 20%); } } + +#student-list li { + cursor: pointer; +} + +#student-list li:hover { + opacity: 0.8; +} + +#user h1 { + cursor: pointer; +} + +#user h1:hover { + opacity: 0.8; +} + +#comments div { + display: flex; + flex-flow: row wrap; + justify-content: space-between; +} + +#comments h1 { + cursor: pointer; +} + +#comments h1:hover { + opacity: 0.8; +} + +#comments .edit-btn, +#comments .delete-btn, +#comments .add-btn { + cursor: pointer; +} + +#comments .edit-btn:hover, +#comments .delete-btn:hover, +#comments .add-btn:hover { + opacity: 0.8; +} + +#comments #add-div { + justify-content: center; +} + +#comments #add-div div { + width: 100%; +} + +#comments #add-div div textarea { + width: 100%; + height: 80%; +} -- cgit v1.2.3