Created
April 29, 2017 22:00
-
-
Save Louiefigz/2d15612b323a0812bf5fdde9ec001072 to your computer and use it in GitHub Desktop.
styling for comment box code for react comments lab.
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
body { | |
margin: 0; | |
padding: 0; | |
font-family: sans-serif; | |
background:#E6EEF6; | |
} | |
.wrap{ | |
margin-left:20px; | |
} | |
.box{ | |
width:40%; | |
height:200px; | |
float:left; | |
background-color:white; | |
margin:25px 15px; | |
border-radius:5px; | |
} | |
.box h3{ | |
font-family: 'Didact Gothic', sans-serif; | |
font-weight:normal; | |
text-align:center; | |
padding-top:60px; | |
color:#fff; | |
} | |
.box1{ | |
background-color: #EBA39E; | |
} | |
.box2{ | |
background-color: #EDE89A; | |
} | |
.shadow1{ | |
position:relative; | |
} | |
.shadow1{ | |
box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.1) inset; | |
} | |
/*****************************************************************dashed border | |
****************************************************************/ | |
.shadow1 h3{ | |
width:87%; | |
height:100px; | |
margin-left:6%; | |
border:2px dashed #F7EEEE; | |
border-radius:5px; | |
} | |
/**************************************************************** | |
*styling shadows | |
****************************************************************/ | |
.shadow1:before, .shadow1:after{ | |
position:absolute; | |
content:""; | |
bottom:12px;left:15px;top:80%; | |
width:45%; | |
background:#9B7468; | |
z-index:-1; | |
-webkit-box-shadow: 0 20px 15px #9B7468; | |
-moz-box-shadow: 0 20px 15px #9B7468; | |
box-shadow: 0 20px 15px #9B7468; | |
-webkit-transform: rotate(-6deg); | |
-moz-transform: rotate(-6deg); | |
transform: rotate(-6deg); | |
} | |
.shadow1:after{ | |
-webkit-transform: rotate(6deg); | |
-moz-transform: rotate(6deg); | |
transform: rotate(6deg); | |
right: 15px;left: auto; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment