Created
December 29, 2017 18:07
-
-
Save manderly/b4b54026cae01bdb33c4353f2b8743c8 to your computer and use it in GitHub Desktop.
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
.pros-cons-table { | |
width:100%; | |
} | |
.pros-cons-table tbody tr td { | |
border: 2px solid white; | |
} | |
.pros-cons-header { | |
width: 50%; | |
padding-left: 30px; | |
text-align:center; | |
font-weight: bold; | |
color: #fff; | |
} | |
.pros-header { | |
background-color: #5b9298; | |
} | |
.cons-header { | |
background-color: #9f6233; | |
} | |
.pros-body { | |
width: 50%; | |
/* background-color: #cfe0e2; */ | |
} | |
.pros-body li:before { | |
content: "\f00c"; /* FontAwesome Unicode */ | |
font-family: FontAwesome; | |
display: inline-block; | |
margin-left: -1.3em; /* same as padding-left set on li */ | |
width: 1.3em; /* same as padding-left set on li */ | |
} | |
.cons-body { | |
width: 50%; | |
/* background-color: #ecd6c5; */ | |
} | |
.cons-body li:before { | |
content: "\f00d"; /* FontAwesome Unicode */ | |
font-family: FontAwesome; | |
display: inline-block; | |
margin-left: -1.3em; /* same as padding-left set on li */ | |
width: 1.3em; /* same as padding-left set on li */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment