forked from b2evolution/b2evolution
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathitem_base.css
More file actions
79 lines (79 loc) · 1.36 KB
/
item_base.css
File metadata and controls
79 lines (79 loc) · 1.36 KB
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
/**
* item_base.css
* These are the default styles that are used INSIDE of a blog post.
* Override this with an item.css file in your skin folder.
*/
pre {
overflow: hidden;
}
samp,
.codespan,
pre.codeblock {
background-color: #F2F1F0;
border: 1px solid #CCCCCC;
border-radius: 2px 2px 2px 2px;
padding: 0 0.5ex;
}
pre.codeblock {
overflow: auto;
padding: 0.5ex 2ex;
}
pre.codeblock code {
display: block;
font-size: 110%;
}
div.codeblock {
background-color: #FBFAF9;
border: 1px solid #CCCCCC;
border-radius: 2px 2px 2px 2px;
box-shadow: 0 0 5px #CCCCCC inset;
margin: 1ex 0;
padding: 6px;
overflow: auto;
}
div.codeblock_with_title {
margin-top: 0;
}
div.codeblock pre {
margin: 0;
}
p.codeblock_title,
.bText p.codeblock_title {
font-family: Verdana, Arial, Helvetica, sans-serif;
letter-spacing: 0.1em;
line-height: 95%;
font-weight: bold;
font-size: 72%;
color: #ABAAA9;
margin: 1ex 3px 0;
}
div.codeblock > p {
display: none;
}
div.videoblock {
text-align: center;
margin: 1ex auto;
position: relative;
max-width: 100%;
height: 0;
padding-bottom: 56.25%;
}
div.videoblock iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
div.podplayer {
margin: 1em 0;
}
.bMore {
text-align: left;
}
.bMore a {
font-weight: bold;
}
.evo_shortlink_broken {
border-bottom: 1px dotted #F00;
}