stylesheet

This commit is contained in:
Ismail Cadaroski 2017-02-16 22:46:17 +01:00
parent 81d5b5332a
commit 75e98a190f
1 changed files with 44 additions and 1 deletions

View File

@ -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;
}