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
93
|
@import "lib.css";
body {
margin: 0;
padding: 0;
}
.quote {
text-align: left;
width: 210px;
margin-left: -10px;
font-size: 12pt;
}
@shweet-orange: #ff7d02;
@primary: #2A2A2A;
@secondary: #FFFFFF;
.myFontStyle1 {
color: @secondary;
font-family: Helvetica;
font-size: 14pt;
text-align: center;
}
.myFontStyle2 {
.myFontStyle1;
font-size: 10pt;
text-align: left;
}
.myFontStyle3 {
font-family: HawaiiKiller;
font-size: 40pt;
text-align: left;
.shadow1;
}
.panel {
position:absolute;
right: 2em;
top: 2em;
width: 200px;
height: 400px;
padding: 20px;
background-color: @shweet-orange;
.myFontStyle1;
.rounded-corners;
}
.bar {
width: 100%;
background-color: @primary;
}
.header {
.bar;
height: 5em;
color: @shweet-orange;
.logo {
padding: 20px;
padding-left: 30px;
.myFontStyle3;
}
}
.footer {
.bar;
height: 5em / 2;
position:absolute;
bottom: 0;
}
.copyright {
padding: 10px;
.myFontStyle2;
}
|