Created
August 9, 2017 03:36
-
-
Save infinityCounter/1aa53a77919551cb5c2559e7a1318945 to your computer and use it in GitHub Desktop.
CommentList component css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.comment-view { | |
width: 75%; | |
margin: 0 auto; | |
margin-bottom: 2.5em; | |
} | |
.comment-view-controls { | |
font-size: 0.74em; | |
color: blue; | |
} | |
.comment-view-controls > ul { | |
list-style-type:none; | |
padding: 0; | |
} | |
.comment-view-controls > ul > li { | |
display: inline; | |
margin-right: 1em; | |
} | |
.comment-view-body { | |
width: 80%; | |
max-width: 80%; | |
word-wrap: break-word; | |
} | |
.comment-view-details { | |
font-size: 0.71em; | |
} | |
.comment-view-details span { | |
margin-right: 3em; | |
} | |
.comment-form { | |
width: 75%; | |
margin: 0 auto; | |
margin-bottom: 2.5em; | |
} | |
.comment-form textarea { | |
display: block; | |
width : 80%; | |
height: 5em; | |
resize:none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment