From 75e98a190f04464adc559b865ab7409dd972367e Mon Sep 17 00:00:00 2001 From: Ismail Cadaroski Date: Thu, 16 Feb 2017 22:46:17 +0100 Subject: [PATCH] stylesheet --- css/stylesheet.css | 45 ++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) diff --git a/css/stylesheet.css b/css/stylesheet.css index 128575a..2bbdcf5 100644 --- a/css/stylesheet.css +++ b/css/stylesheet.css @@ -3,6 +3,7 @@ body { width:50%; margin-left:auto; margin-right:auto; + background-color: #ddd; } p { @@ -49,5 +50,47 @@ li { background-color: #fff; border-radius: 4px; position: relative; - +} +.comment-box p{ + font-family: arial; + font-size: 14px; + line-height: 16px; + color: #282828; + font-weight: 100; +} +/* edit button form */ +.edit-form button{ + width:40px; + height: 20px; + color: #282828; + background-color: #fff; + opacity: 0.7; +} + +.edit-form{ + position: absolute; + top: 0px; + right: 70px; +} + +.edit-form button:hover{ + opacity: 1; +} +/* delete button form */ +.delete-form button{ + width:65px; + height: 20px; + color: #282828; + background-color: #fff; + opacity: 0.7; +} + +.delete-form{ + position: absolute; + top: 0px; + right: 0px; +} + +.delete-form button:hover{ + opacity: 1; }