This commit is contained in:
Claude 2012-05-01 18:04:27 +02:00
parent ac8bad60e3
commit cb80e53a9e
2 changed files with 11 additions and 1 deletions

View File

@ -42,6 +42,9 @@ $this->carabiner->display('css');
<body> <body>
<div class="paste"> <div class="paste">
<p>Data provided by <a href="<?php echo base_url(); ?>" target="_top">Stikked</a>
- <a href="<?php echo site_url('view/download/' . $pid); ?>">Download Raw</a>
- <a href="<?php echo site_url('view/' . $pid); ?>" target="_top">See Original</a></p>
<div class="text_formatted"> <div class="text_formatted">
<div class="container"> <div class="container">
<?php echo $paste; ?> <?php echo $paste; ?>

View File

@ -5,7 +5,14 @@
} }
.paste .text_formatted { .paste .text_formatted {
width: 600px; width: 100%;
margin: 0; margin: 0;
border: 0;
}
.paste p {
clear: both;
background: #ccc;
padding: 0 6px;
} }