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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
/*
* Default Blog elements styles
* Feel free to override all these styles in your own skins
*/
.bMore {
text-align: center;
}
.bMore a {
font-weight: bold;
font-size: 110%;
}
.FigZone {
text-align: center;
margin: 8px;
}
.FigCent240 {
width: 240px;
color: #FFFFFF;
background-color: #000000;
padding: 12px;
margin: 0ex auto;
border: 1px solid #FFFFFF;
text-align: center;
}
.FigCent320 {
width: 320px;
color: #FFFFFF;
background-color: #000000;
padding: 12px;
margin: 0ex auto;
border: 1px solid #FFFFFF;
text-align: center;
}
.FigZone img{
border: none;
margin-bottom: 8px;
}
.FigZone a {
color: #FFFFFF;
text-decoration: none;
}
.FigZone a:link {
color: #FFFFFF;
}
.FigZone a:visited {
color: #FFFFFF;
}
.FigZone a:active {
color: #FFFFFF;
}
a.permalink_right {
float: right;
border: 0px;
}
span.NonExistentWikiWord {
border-bottom: 1px dotted #ccc;
}
div.codeblock {
background-color: #eee;
border: 1px dotted #aaa;
margin: 1ex;
padding: 1ex;
width: 90%;
overflow: auto;
}
div.codeblock pre {
margin: 0;
}
/* Calendar: */
caption.bCalendarCaption {
font-size: 105%;
font-weight: bold;
margin: auto;
padding: .5ex 0;
white-space: nowrap;
}
table.bCalendarTable {
margin: 0 auto 1em auto;
font-size: 77%;
border-collapse: separate;
border-spacing: 0px;
}
tr.bCalendarRow {
text-align: center;
}
th.bCalendarHeaderCell {
font-size: 84%;
width: 4ex;
}
td.bCalendarCell {
width: 4ex;
height: 3.5ex;
}
.bCalendarLinkPost {
font-weight: bold;
}
td#prev,
td#next {
font-weight: bold;
font-size: 105%;
padding: .5ex;
white-space: nowrap;
}
td#prev a,
td#next a {
padding: 0 .5ex;
}
td#prev {
text-align: left;
}
td#next {
text-align: right;
}
|