-
Notifications
You must be signed in to change notification settings - Fork 0
/
screen.css
71 lines (64 loc) · 1.42 KB
/
screen.css
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/* Block info box */
div.block-info
{
position:relative;
float: right;
/* Customize only the options below */
margin: 2px;
padding: 2px;
width: auto;
min-width: auto;
max-width: auto;
border-width: 1px !important;
border-style: solid !important;
border-color: __border__ !important;
background-color: transparent;
}
/* Block info table (nested in div.block-info) */
div.block-info table
{
border-width: 0px !important; /* Keep !important for override to work! */
border-style: solid;
border-color: __border__;
background-color: transparent;
}
/* Block name container */
div.block-info .title
{
display: block;
width: 100%;
border-width: 0px;
border-style: solid;
border-color: __border__;
background-color: __background_neu__;
color: __text_neu__;
text-align: center !important;
text-transform: uppercase;
}
/* Block image container */
div.block-info .block-image
{
display: block;
padding: 5px;
border-width: 0px;
}
/* Block image */
div.block-info .block-image img {}
/* Attribute column */
div.block-info th.attribute
{
border-width: 0px;
border-style: solid;
border-color: __border__;
background-color: transparent;
color: __text__;
}
/* Value column */
div.block-info td.value
{
border-width: 0px;
border-style: solid;
border-color: __border__;
background-color: transparent;
color: __text__;
}