blob: b4220663d3412c15a3943ce6eda115662f90ef72 (
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
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
72
73
74
75
76
77
78
79
80
81
82
|
/*
* Custom rules for skins/standard/global.css.
* The rules you put here override rules in that stylesheet.
*/
body {
margin: 0;
padding: 15px 15px 2px 15px;
}
#header .btn, #header .txt {
font-size: 100%;
}
#header #information {
color: #dddddd;
font-size: small;
}
pre {
font-size: medium;
}
#attachment_table {
width: 50em;
}
#page-index #quicksearchForm {
padding-top: 20px;
}
/* createaccount styling */
.support_div {
width: 40%;
font-size: 80%;
}
.support_div > img {
padding: 5px 20px;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a.controller {
font-size: 100%;
border: 1px solid #c0c0c0;
padding: 3px;
}
#footer .outro {
text-align:left;
padding-left:1ex;
padding-bottom:1ex;
}
.group_secure > th > a {
background-image: url("../../images/padlock.png");
background-position: center left;
background-repeat: no-repeat;
padding-left: 18px;
}
#privacy-policy {
font-size: x-small;
width: 100%;
text-align: right;
}
.highlighted {
background: lightyellow;
}
/* user dropdown menu down-arrow */
.vcard a .fn:after, .vcard a .ln:after {
content: ' \25BE';
}
|