3099e10dfa
- moved from global namespace into anonymous function - as onclick has no direct access to the zerobin methods, the events are now bound in the init() method via bindEvents() - to simplify maintenance, the functions were wrapped into 3 objects: zerobin (display logic, event handling), filter (compression, encryption) and helper (stateless utilities) - some CSS and template adjustements were also done
40 lines
521 B
CSS
40 lines
521 B
CSS
/* ZeroBin 0.20 - http://sebsauvage.net/wiki/doku.php?id=php:zerobin */
|
|
|
|
|
|
body {
|
|
padding: 70px 0 30px 0;
|
|
}
|
|
|
|
#deletelink {
|
|
float: right;
|
|
}
|
|
|
|
#pastelink {
|
|
display: inline;
|
|
}
|
|
|
|
#message {
|
|
font-family: monospace;
|
|
}
|
|
|
|
#nickname {
|
|
margin: 5px 0;
|
|
}
|
|
|
|
#comments, #comments button {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.comment {
|
|
border-left: 1px solid #ccc;
|
|
padding: 5px 0 5px 10px;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
footer h4 {
|
|
margin-top: 0;
|
|
}
|
|
|
|
li.L0, li.L1, li.L2, li.L3, li.L5, li.L6, li.L7, li.L8 {
|
|
list-style-type: decimal !important;
|
|
} |