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
131
|
# File 'lib/chikken_in_a_bukket.rb', line 75
def get
@headers['Content-Type'] = 'text/css'
<<-CSS
body {
font: "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
font-size: 80%;
background-color: white;
background-image: url('/background.gif');
background-position: top;
background-repeat: repeat-x;
padding: 10px;
}
.separator {
padding-left: 5px;
padding-right: 5px;
}
a, a:visited {
color: #666;
}
div.bucket {
position: absolute;
right: 10px;
bottom: 10px;
}
fieldset {
width: 50%;
padding: 10px;
}
input {
margin-right: 10px;
}
input {
background-color: #eee;
}
label {
display: block;
}
span.delete {
padding: 10px;
font-size: 80%;
font-weight: bold;
}
.flash {
color: #af2219;
font-weight: bold;
}
CSS
end
|