Last active
April 3, 2017 00:49
-
-
Save lodestone/5094b4027a7e6918768a2f694a4a73a9 to your computer and use it in GitHub Desktop.
CSS Tables
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
<style> | |
html, body, .dashboard { | |
width:100%; | |
height:100%; | |
margin: 0; | |
background: black; | |
overflow: hidden; | |
} | |
.dashboard { | |
border: 2px solid black; | |
} | |
.grid-container { | |
display: grid; | |
grid-template-columns: 250px auto 40%; | |
grid-template-rows: 55px auto-flow 45%; | |
overflow: hidden; | |
width: 100%; | |
height: 100%; | |
background-color: #000000; | |
grid-gap: 5px 5px; | |
} | |
.grid-container > div { | |
border: 0px dotted rgba(255,255,255,0.4); | |
height: 100%; | |
width: 100%; | |
display: grid; | |
grid-gap: 5px 5px; | |
} | |
.box { | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment