From 9dd8f58bebb1c7a224c512b977c46799b6f9b6b3 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Sun, 14 Jan 2007 19:36:20 +0000 Subject: [PATCH] css per la room --- web/room.css | 216 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 216 insertions(+) create mode 100644 web/room.css diff --git a/web/room.css b/web/room.css new file mode 100644 index 0000000..d83d559 --- /dev/null +++ b/web/room.css @@ -0,0 +1,216 @@ +/* + * brisk - brisk.css + * + * Copyright (C) 2006 matteo.nastasi@milug.org + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABLILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. You should have received a + * copy of the GNU General Public License along with this program; if + * not, write to the Free Software Foundation, Inc, 59 Temple Place - + * Suite 330, Boston, MA 02111-1307, USA. + * + * $Id$ + * + */ + +body { + background-image: url('img/bg_capodanno.jpg'); + background-repeat: no-repeat; + background-position: top center; + margin:0px; + + font-size: 12px; + padding: 0px; + + align: center; + } + +div.container { + width:100%; + margin:0px; + padding: 0px; + /* border:1px solid gray; + line-height:150%; */ +} + +div.header { + /* border: 1px solid yellow; */ + align: center; + text-align: center; + font-size: 12px; + clear:left; + } + +div.topmenu { + /* border: 1px solid red; */ + float:left; + width:90px; + margin:0; + text-align: center; + font-size: 10px; + padding:4px; + } + +div.tables { + /* border: 1px solid gray; */ + margin-left:100px; + padding:4px; + } + +div.bottom { + /* border: 1px solid green; */ + position: relative; + top: -16px; + text-align: left; + padding:4px; + clear:left; +} + +div { + /* position: relative;*/ + font-size: 12px; + } + +td { + font-size: 12px; + } + +table.room_tab { + border-style: solid; + border-width: 1px; + border-color: grey; + border-collapse: collapse; + border-spacing: 0px; + align: center; + padding: 0px; + width: 680px; +} + +td.room_td { + /* background-color: yellow;*/ + width: 170px; + height: 140px; + vertical-align: "top"; + border-width: 1px; + + border-style: solid; + border-width: 1px; + border-color: grey; + border-collapse: collapse; + margin: 0px; + padding:0px; + } + +div.room_div { + position: relative; + align: center; + text-align: center; + width: 170px; + height: 140px; + margin: 0px; + padding: 4px; + } + +div.table_act { + position: absolute; + align: center; + width: 100%; + bottom: 4px; + } + + +div.room_standup { + height: 68px; + align: left; + overflow: auto; + vertical-align: "top"; + } + +div.room_ex_standup { + position: relative; + height: 120px; + align: left; + text-align: left; + padding: 4px; + /* vertical-align: "top"; */ + } + +table.table_standup { + /* background-color: red; */ + border-spacing: 0px; + width: 100%; + margin: 0px; + padding:0px; + } + +td.td_standup { + text-align: center; + padding: 0px; + margin: 0px; +} + +.esco { + position: absolute; + text-align: center; + width: 100%; + bottom: 4px; + } + + +.chatt { + height: 100px; + overflow: auto; + border: 1px solid grey; + padding: 2px; + vertical-align: text-bottom; + } + +.txtt { + /* font-size: 10pt;*/ + } + +img { + position: absolute; + border-style: solid; + border-width: 1px; + border-color: grey; + } + +img.nobo { + position: relative; + border-width: 0px; + display: block; margin: auto; +} + +.urgmsg { + text-align: center; + } + +.proxhr { + /* background-color: green; */ + } + +.notify { + border-style: solid; + border-width: 1px; + position: absolute; + width: 500px; + height: 400px; + text-align: center; + background-color: white; + left: 150; + top: 150; + z-index: 10; + visibility: hidden; + filter: alpha(opacity=90); + -moz-opacity: 0.90; + opacity: 0.90; +} + -- 2.17.1