Created
April 11, 2016 06:41
-
-
Save snoblenet/7c462c18d28367ca74f27667a8eed081 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
body { | |
margin: 0; | |
} | |
#sidebar { | |
border-right: 1px solid gray; | |
vertical-align: top; | |
} | |
#container { | |
width: 100%; | |
display: table; | |
} | |
#row { | |
display: table-row; | |
} | |
#sidebar { | |
width: 250px; | |
height: 600px; | |
display: table-cell; | |
} | |
#browser { | |
display: table-cell; | |
width: 800px; | |
height: 600px; | |
} | |
wrapper { | |
width: 100%; | |
height: 100%; | |
} | |
webview { | |
autosize: on; | |
min-width: 800px; | |
min-height: 600px; | |
background-color: blue; | |
display: inline-block; | |
} | |
#admin, #task { | |
padding: 10px; | |
} | |
#admin { | |
border-top: 1px solid gray; | |
} | |
h1 { | |
margin-top: 0; | |
font-size: 6; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment