blob: e060698cb71775508bc97a9057a72e7613ab68b2 (
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
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
122
123
124
125
126
127
128
129
130
|
@font-face {
font-family: 'Conv_VarelaRound-Regular';
src: url('?document=fonts/VarelaRound-Regular.eot');
src: url('?document=fonts/VarelaRound-Regular.woff') format('woff'), url('?document=fonts/VarelaRound-Regular.ttf') format('truetype'), url('?document=fonts/VarelaRound-Regular.svg') format('svg');
font-weight: normal;
font-style: normal;
}
body {
font-family: 'Conv_VarelaRound-Regular', Georgia, Serif;
background-color: #19495f;
height: 100%;
max-width: 900px;
}
div.header {
background-color: #01768f;
border-color: #000000;
border-width: 2px;
border-style: solid;
color: #FFFFFF;
padding: 20px;
margin: 0px;
margin-bottom: 0px;
text-align: center;
border-radius:10px;
box-shadow: 10px 10px 5px #000000;
}
div.main {
background-color: #FFFFFA;
border-width: 1px;
border-style: solid;
padding: 5px;
border-radius:10px;
box-shadow: 10px 10px 5px #000000;
}
div.important {
background-color: #FF8181;
border-width: 1px;
border-style: solid;
border-radius:10px;
margin-right: 10px;
box-shadow: 10px 10px 5px #000000;
}
html {
height: 100%;
}
p {
padding: 1px 0;
}
span.italic {
font-style: italic;
}
span.bold {
font-weight: bold;
}
h1 {
font-family: Georgia, Serif;
padding-left: 10px;
font-size: 30px;
text-shadow: 3px 3px 3px #BBBBBB;
}
h2, h3 {
font-family: Georgia, Serif;
padding-left: 10px;
padding-right: 10px;
text-shadow: 3px 3px 3px #BBBBBB;
}
p {
padding-left: 10px;
padding-right: 10px;
}
pre, .quote, .code {
border:1px #000000 solid;
font-family: "Courier New", courier;
background: #FFFFFF;
color: #000000;
padding-top: -10px;
padding-right: 10px;
padding: 10px;
margin-bottom: 30px;
margin-right: 15px;
border-radius:10px;
box-shadow: 10px 10px 5px #000000;
}
.footer {
background-color: #EEEEEE;
color: #000000;
text-align: center;
font-style: italic;
font-size: 12px;
margin-top: 10px;
padding: 10px;
border-radius:10px;
}
a {
color: #000000;
}
a:hover {
color: #FF0000;
text-decoration: none;
}
img {
padding-left: 10px;
padding-bottom: 10px;
}
img.limg {
padding-right: 10px;
}
div.incsep {
background-color: #FEFEFE;
padding-bottom: 50px;
}
|