blob: 0c6884124ca1a8f29a2a75aa1995f1034ce78825 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/*
* Custom rules for index.css.
* The rules you put here override rules in that stylesheet.
*/
/* index.html.tmpl puts intro hook contents inside a div which causes
* the icons to display over two rows when adding the Help icon.
* So we change to inline to make it display a single row. */
#page-index .intro { display: inline; }
#get_help { background: url(../standard/index/help.png) no-repeat; }
.bz_common_actions {
display: block;
height: 170px;
width: 145px;
float: left;
margin: 0 2ex 2em 0;
text-align: center;
}
.bz_common_actions span {
position: relative;
top: 95%;
font-weight: bold;
}
.bz_common_actions,
.bz_common_actions:visited,
.bz_common_actions:hover
{
text-decoration: none;
}
|