diff options
author | MaZderMind | 2015-04-04 20:40:58 +0200 |
---|---|---|
committer | MaZderMind | 2015-04-04 20:40:58 +0200 |
commit | 58f69e634e954fc9e2d3f767722ffbae32ee0047 (patch) | |
tree | 3c91b482ccbb3814be3925a01fa45400785bf91f /assets/css/_structure.less | |
parent | 0b6b44243585a27d97a6a7fc175838e23ff1c49e (diff) |
Move Styles completely into their own assemblies
Diffstat (limited to 'assets/css/_structure.less')
-rw-r--r-- | assets/css/_structure.less | 109 |
1 files changed, 6 insertions, 103 deletions
diff --git a/assets/css/_structure.less b/assets/css/_structure.less index 4bf1c21..5d8957c 100644 --- a/assets/css/_structure.less +++ b/assets/css/_structure.less @@ -77,106 +77,9 @@ body { } } -body.overview { - @import "_overview.less"; -} -body.room { - @import "_room.less"; -} -body.relive { - @import "_relive.less"; -} -body.relive-player { - @import "_relive_player.less"; -} - -body.e404, -body.e500 { - > .container { - text-align: center; - h1 { - font-size: @jumbo-font-size; - margin: 50px 0 50px 0; - } - - img { - background-color: @brand-primary; - max-width: 80%; - } - } -} - -body.e500 { - pre { - text-align: left; - } - - img { - .rotate(180deg); - } -} - -body.feedback { - .feedback-thankyou, - .feedback-error { - font-size: @jumbo-font-size; - text-align: center; - padding: 30px; - - display: none; - - .well(); - } -} - -body.feedback-read { - td { - white-space: nowrap; - &.issuetext { - white-space: normal; - } - } -} - -body.multiview { - .cell { - background-color: white; - - h2 { - font-size: 14px; - padding: 10px; - margin: 0; - } - - .meter { - background-color: gray; - height: 45px; - position: relative; - - .bar { - background-color: red; - position: absolute; - bottom: 0; - } - } - - .timer { - background-color: #909090; - height: 30px; - - text-align: right; - font-size: 22px; - padding-right: 5px; - color: white; - } - } -} - -body.closed { - p { - margin-top: 50px; - } - h1, h2, p { - text-align: center; - } -}
\ No newline at end of file +@import "_error.less"; +@import "_overview.less"; +@import "_room.less"; +@import "_relive.less"; +@import "_multiview.less"; +@import "_closed.less"; |