diff options
| author | ARC <arjunrc@gmail.com> | 2015-04-25 09:13:54 -0400 |
|---|---|---|
| committer | ARC <arjunrc@gmail.com> | 2015-04-25 09:13:54 -0400 |
| commit | 86e4e291bfda3365c0bb82bacb2b9990a86ce759 (patch) | |
| tree | c9729d4bd5366656e39761319546593c02f0f709 /www/css | |
First Commit
Diffstat (limited to 'www/css')
| -rw-r--r-- | www/css/style.css | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/www/css/style.css b/www/css/style.css new file mode 100644 index 00000000..72b89726 --- /dev/null +++ b/www/css/style.css @@ -0,0 +1,68 @@ +/* Empty. Add your own CSS if you like */ + + + +.wrapper { + display: -webkit-box; + display: -moz-box; + display: -ms-flexbox; + display: -webkit-flex; + display: flex; + + -webkit-flex-flow: row wrap; + flex-flow: row wrap; + + font-weight: normal; + text-align: left; + flex-wrap:wrap; +} + +.wrapper > * { + padding: 5px; + flex: 1 100%; +} + +.header { + background: #DDDDDD; +} + +.footer { + background: #666666; + color:#ffffff; + padding:2px; +} + +.main { + text-align: center; + background: #EEEEEE; + padding:2px; +} + +.aside-1 { + background: gold; +} + +.aside-2 { + background: hotpink; +} + +@media all and (min-width: 600px) { + .aside { flex: 1 auto; } +} + +@media all and (min-width: 800px) { + .main { flex: 3 0px; } + .aside-1 { order: 1; } + .main { order: 2; } + .aside-2 { order: 3; } + .footer { order: 4; } +} + +.notification-badge{ + position: absolute; + top: 3px; + right: 0px; + font-size: 8px; +} + + |
