diff options
author | LarsVomMars | 2020-10-19 19:40:35 +0200 |
---|---|---|
committer | LarsVomMars | 2020-10-19 19:40:46 +0200 |
commit | e2c8fea877c156863dbf84f5593acf02894f56b5 (patch) | |
tree | 7e7b2da5ecd3abf984e41b5e44dc2c6a3197bf48 /profile/public/style.css | |
parent | 8d540e4d9aaa951b9031b38eb55bf181e04a8ab1 (diff) |
User comments frontend
Diffstat (limited to 'profile/public/style.css')
-rw-r--r-- | profile/public/style.css | 55 |
1 files changed, 55 insertions, 0 deletions
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%; +} |