diff options
author | MaZderMind | 2014-11-03 21:53:30 +0100 |
---|---|---|
committer | MaZderMind | 2014-11-07 00:17:40 +0100 |
commit | db0a85ea97096af4529b0ea3b903d182144c1310 (patch) | |
tree | 7dc8cebc458175627c7dd809ec67d6c2288cc221 /assets/css/src/lustige-styles.scss | |
parent | 82a054e876424cf055793ae653fbb40b6d5e58ec (diff) |
experimental program view
Diffstat (limited to '')
-rw-r--r-- | assets/css/src/lustige-styles.scss | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/assets/css/src/lustige-styles.scss b/assets/css/src/lustige-styles.scss index 639a746..fe1f9e2 100644 --- a/assets/css/src/lustige-styles.scss +++ b/assets/css/src/lustige-styles.scss @@ -554,9 +554,28 @@ a.inverted { } } +.program { + overflow: hidden; + overflow-x: scroll; + position: relative; + .now { + position: absolute; + left: 100px; + width: 1px; + height: 100%; + background-color: red; + color: red; + font-size: 14px; + text-indent: 4px; + } + .block { + overflow: hidden; + float: left; + height: 100px; - - - + border-right: 1px solid white; + color: white; + } +} |