view theme/links.css @ 0:84057f728815

Initial commit. Already a few changes in here
author Eris Caffee <discordia@eldalin.com>
date Sun, 26 Jan 2014 21:32:19 -0800
parents
children
line source
1 /* Link Styles
2 ---------------------------------------- */
4 /* Links adjustment to correctly display an order of rtl/ltr mixed content */
5 a {
6 direction: ltr;
7 unicode-bidi: embed;
8 }
10 a:link { color: #898989; text-decoration: none; }
11 a:visited { color: #898989; text-decoration: none; }
12 a:hover { color: #d3d3d3; text-decoration: underline; }
13 a:active { color: #d2d2d2; text-decoration: none; }
15 /* Coloured usernames */
16 .username-coloured {
17 font-weight: bold;
18 display: inline !important;
19 padding: 0 !important;
20 }
22 /* Links on gradient backgrounds */
23 #search-box a:link, .navbg a:link, .forumbg .header a:link, .forabg .header a:link, th a:link {
24 color: #FFFFFF;
25 text-decoration: none;
26 }
28 #search-box a:visited, .navbg a:visited, .forumbg .header a:visited, .forabg .header a:visited, th a:visited {
29 color: #FFFFFF;
30 text-decoration: none;
31 }
33 #search-box a:hover, .navbg a:hover, .forumbg .header a:hover, .forabg .header a:hover, th a:hover {
34 color: #ffffff;
35 text-decoration: underline;
36 }
38 #search-box a:active, .navbg a:active, .forumbg .header a:active, .forabg .header a:active, th a:active {
39 color: #ffffff;
40 text-decoration: none;
41 }
43 /* Links for forum/topic lists */
44 a.forumtitle, a.topictitle {
45 font-size: 1.1em;
46 font-family: "ExoBold", Arial, Helvetica, sans-serif;
47 color: #898989;
48 text-decoration: none;
49 }
51 /* a.forumtitle:visited { color: #898989; } */
53 a.forumtitle:hover, a.topictitle:hover {
54 color: #bcbcbc;
55 text-decoration: underline;
56 }
58 a.forumtitle:active, a.topictitle:active {
59 color: #898989;
60 }
62 /* Post body links */
63 .postlink {
64 text-decoration: none;
65 color: #d2d2d2;
66 border-bottom: 1px solid #d2d2d2;
67 padding-bottom: 0;
68 }
70 /* .postlink:visited { color: #bdbdbd; } */
72 .postlink:active {
73 color: #d2d2d2;
74 }
76 .postlink:hover {
77 background-color: #f6f6f6;
78 text-decoration: none;
79 color: #404040;
80 }
82 .signature a, .signature a:visited, .signature a:hover, .signature a:active {
83 border: none;
84 text-decoration: underline;
85 background-color: transparent;
86 }
88 /* Profile links */
89 .postprofile a:link, .postprofile a:visited, .postprofile dt.author a {
90 font-weight: bold;
91 color: #898989;
92 text-decoration: none;
93 }
95 .postprofile a:hover, .postprofile dt.author a:hover {
96 text-decoration: underline;
97 color: #d3d3d3;
98 }
101 /* CSS spec requires a:link, a:visited, a:hover and a:active rules to be specified in this order. */
102 /* See http://www.phpbb.com/bugs/phpbb3/59685 */
103 .postprofile a:active {
104 font-weight: bold;
105 color: #898989;
106 text-decoration: none;
107 }
110 /* Profile searchresults */
111 .search .postprofile a {
112 color: #898989;
113 text-decoration: none;
114 font-weight: normal;
115 }
117 .search .postprofile a:hover {
118 color: #d3d3d3;
119 text-decoration: underline;
120 }
122 /* Back to top of page */
123 .back2top {
124 clear: both;
125 height: 11px;
126 text-align: right;
127 }
129 a.top {
130 background: none no-repeat top left;
131 text-decoration: none;
132 width: {IMG_ICON_BACK_TOP_WIDTH}px;
133 height: {IMG_ICON_BACK_TOP_HEIGHT}px;
134 display: block;
135 float: right;
136 overflow: hidden;
137 letter-spacing: 1000px;
138 text-indent: 11px;
139 }
141 a.top2 {
142 background: none no-repeat 0 50%;
143 text-decoration: none;
144 padding-left: 15px;
145 }
147 /* Arrow links */
148 a.up { background: none no-repeat left center; }
149 a.down { background: none no-repeat right center; }
150 a.left { background: none no-repeat 3px 60%; }
151 a.right { background: none no-repeat 95% 60%; }
153 a.up, a.up:link, a.up:active, a.up:visited {
154 padding-left: 10px;
155 text-decoration: none;
156 border-bottom-width: 0;
157 }
159 a.up:hover {
160 background-position: left top;
161 background-color: transparent;
162 }
164 a.down, a.down:link, a.down:active, a.down:visited {
165 padding-right: 10px;
166 }
168 a.down:hover {
169 background-position: right bottom;
170 text-decoration: none;
171 }
173 a.left, a.left:active, a.left:visited {
174 padding-left: 12px;
175 }
177 a.left:hover {
178 color: #d2d2d2;
179 text-decoration: none;
180 background-position: 0 60%;
181 }
183 a.right, a.right:active, a.right:visited {
184 padding-right: 12px;
185 }
187 a.right:hover {
188 color: #d2d2d2;
189 text-decoration: none;
190 background-position: 100% 60%;
191 }
193 /* invisible skip link, used for accessibility */
194 .skiplink {
195 position: absolute;
196 left: -999px;
197 width: 990px;
198 }
200 /* Feed icon in forumlist_body.html */
201 a.feed-icon-forum {
202 float: right;
203 margin: 3px;
204 }