aggiunta classe hover per le immagini
[brisk.git] / web / brisk.css
1 /*
2  *  brisk - brisk.css
3  *
4  *  Copyright (C) 2006 matteo.nastasi@milug.org
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABLILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * General Public License for more details. You should have received a
15  * copy of the GNU General Public License along with this program; if
16  * not, write to the Free Software Foundation, Inc, 59 Temple Place -
17  * Suite 330, Boston, MA 02111-1307, USA.
18  *
19  * $Id$
20  *
21  */
22
23 body {
24         background-image: url('img/bg_capodanno.jpg'); 
25         background-repeat: no-repeat;
26         background-position: top center; 
27         margin:0px;
28
29         font-size: 12px;
30         padding: 0px;
31
32         align: center;
33         }
34
35 div {
36         font-size: 12px;
37         }
38
39 td {
40         font-size: 12px;
41         }
42
43 img {
44         position:     absolute; 
45         border-style: solid;
46         border-width: 1px;
47         border-color: grey;
48         }
49
50 img.nobo {
51         position:     relative;
52         border-width: 0px;
53         display: block; 
54         margin: auto;
55 }
56
57 .notify { 
58         border-style: solid;
59         border-width: 1px;
60         position: absolute;
61         margin: auto;
62         overflow: auto;
63         top: 0;
64         bottom: 0;
65         left: 0;
66         right: 0;
67         align: center;
68         text-align: center;
69         background-color: white;
70         z-index: 10;
71         visibility: hidden;
72         filter: alpha(opacity=90);
73         -moz-opacity: 0.90;
74         opacity: 0.90;  
75 }
76
77 div.notify_clo { 
78         position: absolute;
79         align: center;
80         width: 100%;
81         bottom:  4px;
82         }
83
84 input.button {
85   border: 1px solid gray;  
86   color: black;
87   background-color: RGB(246,246,246);
88   vertical-align: middle;
89   text-decoration:none;
90   font-size: 100%;
91   cursor: pointer;
92   height: 20px ! important;
93   max-height: 20px ! important;
94   min-height: 20px ! important;
95   margin: 1px;
96   display: inline;
97 }
98
99 input.button:hover {
100   background-color: white;
101 }
102
103 input.button:active {
104   background-color: RGB(255,255,153);
105 }
106
107 img.button:hover {
108   cursor: pointer;
109 }