-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelements.js
More file actions
34 lines (29 loc) · 715 Bytes
/
elements.js
File metadata and controls
34 lines (29 loc) · 715 Bytes
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
$(document).ready(function(){
$('html, body, .main, .content,#content, #container,.singular #primary, #branding, #hgroup').css({
'background': '#F4F3EB',
'background-color': '#F4F3EB'
});
$('*').css({
'color': '#3D3936',
'text-shadow': 'none',
'background': '#F4F3EB',
'background-color': '#F4F3EB'
});
$('.article').css({
'font-size': '13px',
'line-height': '22px'
});
$('#Banner img').css("background-color", "#555E66");
$('a:hover').css("color","#F4F3EB");
$('pre').css({
'background': '#EBE9DC',
'border': 'none',
'box-shadow': 'none'
});
$('blockquote').css({
'background': 'none',
'color' : '#444',
'border-left': '1px solid',
'box-shadow': 'none'
});
});