diff options
Diffstat (limited to 'rt/share/static/css/freeside4/layout.css')
-rw-r--r-- | rt/share/static/css/freeside4/layout.css | 116 |
1 files changed, 116 insertions, 0 deletions
diff --git a/rt/share/static/css/freeside4/layout.css b/rt/share/static/css/freeside4/layout.css new file mode 100644 index 000000000..62080e8ac --- /dev/null +++ b/rt/share/static/css/freeside4/layout.css @@ -0,0 +1,116 @@ +/* body */ + +body { + padding: 0; + margin: 0; + font-family: arial, helvetica, sans-serif; + color: #000000; +} + +div#body { + padding: 3em; + margin-left: 1em; + margin-top: 4em; + margin-right: 0; + margin-bottom: 0em; + background: #fff; + z-index: 1; +} + +div#footer { + position: absolute; + right: 0; + text-align: right; + font-size: 0.9em; + margin-top: 2em; + background: #fff; + margin-bottom: 0; + padding-left: 3em; + padding-right: 1em; +} + +div#footer #time { + display: none +} + +div#footer #bpscredits { + text-align: right; + background: url(../../../static/images/bpslogo.png) no-repeat top right; + padding-top: 4em; +} + +/* logo stuff */ + +div#logo { + position: absolute; + right: 2px; + top: 0; + height: 2.3em; +} + +div#logo a img { + border: 0; + height: 100% !important; + width: auto !important; + float: right; +} + +div#logo .rtname { + position: relative; + font-weight: bold; + text-align: center; + top: 0.7em; + padding-right: 1em; + float: left; +} + +div#quickbar, +div#logo { + font-size: 0.9em +} + +div#quickbar a, +div#logo a { + color: #000 +} + +div#quickbar { + background: #fff; + padding-top: 1em; + padding-left: 1em; + padding-bottom: 0.5em; + height: 1em; + border-bottom: 1px solid #ccc; +} + +div#header { + position: absolute; + top: 2.3em; + left: 0; + right: 0; + height: 3.2em; + background: #547CCC; +} + +div#header h1 { + position: absolute; + left: 1em; + right: 20em; + top: 0em; + height: 1.4em; + font-size: 1.4em; + color: #fff; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + +/* in multi-column layouts, make sure we have an internal gutter */ + +tr .boxcontainer { + padding-right: 3em +} + +tr .boxcontainer:last-child { + padding-right: 0 +} |