Wrap text
Report abuse
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
|
@font-face {
src: url('Hawaii_Killer.ttf');
font-family: 'HawaiiKiller';
}
.rounded-corners {
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
-khtml-border-radius: 15px;
border-radius: 15px;
}
.shadow1 { text-shadow: 1px 1px 5px #ffffff; }
body {
margin: 0;
padding: 0;
}
.quote {
text-align: left;
width: 210px;
margin-left: -10px;
font-size: 12pt;
}
.myFontStyle1 {
color: #ffffff;
font-family: Helvetica;
font-size: 14pt;
text-align: center;
}
.myFontStyle2 {
color: #ffffff;
font-family: Helvetica;
font-size: 14pt;
text-align: center;
font-size: 10pt;
text-align: left;
}
.myFontStyle3 {
font-family: HawaiiKiller;
font-size: 40pt;
text-align: left;
text-shadow: 1px 1px 5px #ffffff;
}
.panel {
position: absolute;
right: 2em;
top: 2em;
width: 200px;
height: 400px;
padding: 20px;
background-color: #ff7d02;
color: #ffffff;
font-family: Helvetica;
font-size: 14pt;
text-align: center;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
-khtml-border-radius: 15px;
border-radius: 15px;
}
.bar {
width: 100%;
background-color: #2a2a2a;
}
.header {
width: 100%;
background-color: #2a2a2a;
height: 5em;
color: #ff7d02;
}
.header .logo {
padding: 20px;
padding-left: 30px;
font-family: HawaiiKiller;
font-size: 40pt;
text-align: left;
text-shadow: 1px 1px 5px #ffffff;
}
.footer {
width: 100%;
background-color: #2a2a2a;
height: 2.5em;
position: absolute;
bottom: 0;
}
.copyright {
padding: 10px;
color: #ffffff;
font-family: Helvetica;
font-size: 14pt;
text-align: center;
font-size: 10pt;
text-align: left;
}
|