diff options
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%; +} |