Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

Untitled
Friday, May 11th, 2012 at 9:06:22am MDT 

  1. /*
  2. Theme Name: Too Simple
  3. Theme URI: http://fortelle.no/blog/2012/toosimple
  4. Author: Christer M.L. Bendixen
  5. Author URI: http://fortelle.no/
  6. Description: Very simple theme. <br/>Feature list: <br/>DISPLAYS NAME OF BLOG! <br/>LISTS ALL THE POSTS! <br/>ENABLES YOU TO CLICK THE TITLES TO VIEW THE POSTS! <br/>HAS SIDEBAR WHERE YOU CAN PUT WIDGETS! <br/>HAS FOOTER WHERE YOU CAN PUT WIDGETS! <br/>...and that's about it.
  7. Version: 1a
  8. License: GNU General Public License
  9. License URI: license.txt
  10. Tags: simple, plain, basic, stripped down, naked, bare, boring, learning
  11. */
  12.  
  13. /* html5doctor.com Reset Stylesheetv1.6.1Last Updated:2010-09-17Author:Richard Clark - http://richclarkdesign.com Twitter:@rich_clark*/ html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{ margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent}body{ line-height:1.4em;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{ display:block}nav ul{ list-style:none}blockquote,q{ quotes:none}blockquote:before,blockquote:after,q:before,q:after{ content:''; content:none}a{ margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent}/* change colours to suit your needs */ins{ background-color:#ff9; color:#000; text-decoration:none}/* change colours to suit your needs */mark{ background-color:#ff9; color:#000; font-style:italic; font-weight:bold}del{ text-decoration:line-through}abbr[title],dfn[title]{ border-bottom:1px dotted; cursor:help}table{ border-collapse:collapse; border-spacing:0}/* change border colour to suit your needs */hr{ display:block; height:1px; border:0;  border-top:1px solid #ccc; margin:1em 0; padding:0}input,select{ vertical-align:middle}
  14.  
  15. /* contents:
  16.  *
  17.  * theme description
  18.  * reset stylesheet
  19.  * contents (this)
  20.  * palette
  21.  * header
  22.  * list of posts
  23.  * single post
  24.  * sidebar
  25.  * footer
  26.  * other
  27.  *
  28.  */
  29.  
  30. /* the palette goes white, #ccc, #999, #666, #333 and black. So exciting! links get #f30 */
  31.  
  32.  
  33. /* General stuff */
  34. html{
  35.         background-color: #fff;
  36.         font-family: Verdana, sans-serif;
  37.         font-size: 12px;
  38.         color: #333;
  39. }
  40.  
  41. p{
  42.         padding-bottom: 1em;
  43. }
  44.  
  45. #parappa{
  46.         width: 960px;
  47.         margin: 0 auto 0 auto;
  48.         background-color: #333;
  49. }
  50.  
  51. a{
  52.         color: #f30;
  53. }
  54.  
  55.  
  56. /* header */
  57.  
  58. header{
  59.         width: 100%;
  60.         clear:both;
  61.         background-color: white;
  62. }
  63.  
  64. h1{
  65.         font-weight: bold;
  66.         padding: 0 1em 2em 0;
  67.         color: #666;
  68. }
  69.  
  70. /* list of posts */
  71.  
  72. #listposts{
  73.         width: 65%;
  74.         float:left;
  75.         padding: 0 2.5% 2.5% 2.5%;
  76.         background-color: #ccc;
  77. }
  78.  
  79. #listposts h2{
  80.         padding: 2em 0 1em 0;
  81. }
  82.  
  83. #listposts img{
  84.         max-width: 100%;
  85.         height: auto;
  86.         border: 1px solid white;
  87. }
  88.  
  89. /* single post */
  90.  
  91. #single{
  92.         width: 65%;
  93.         float: left;
  94.         padding: 0 2.5% 2.5% 2.5%;
  95.         background-color: #ccc;
  96. }
  97.  
  98. #single h2{
  99.         padding: 2em 0 1em 0;
  100. }
  101.  
  102. #single img{
  103.         max-width: 100%;
  104.         height: auto;
  105.         padding: 1em 0 1em 0;
  106. }
  107.  
  108. /* sidebar */
  109.  
  110. #sidebar{
  111.         width: 25%;
  112.         height: 100%;
  113.         float: right;
  114.         padding: 2.5% 2.5% 2.5% 2.5%;
  115.         color: #ccc;
  116. }
  117.  
  118.  
  119. #sidebar li{
  120.         padding: 0 0em 2em 0;
  121.         clear:both;
  122.         list-style: none;
  123. }
  124.  
  125. #sidebar .widgettitle{
  126.         padding-bottom: 1em;
  127. }
  128.  
  129. /* footer */
  130.  
  131. footer{
  132.         width: 100%;
  133.         clear: both;
  134. }
  135.  
  136. footer li{
  137.         padding: 2em 1em 2em 0;
  138.         float:left;
  139.         color: #333;
  140.         list-style: none;
  141. }
  142.  
  143. /* other */
  144.  
  145. #nav-below{
  146.         width: 100%;
  147.         clear:both;
  148.         padding: 4em 1em 0 0;
  149.         text-align:center;
  150. }
  151.  
  152. #commentarea{
  153.         width: 100%;
  154.         height: 200px;
  155.         padding: 0;
  156.         border:none;
  157.         margin:none;
  158. }
  159.  
  160. #commentsubmit{
  161.         float:right;
  162.         border:none;
  163.         width: 100%;
  164.         margin: 0;
  165.         height: 30px;
  166.         color: #fff;
  167.         background-color: #333;
  168.         z-index: 9000;
  169. }
  170.  
  171. #comments{
  172.         background-color: #999;
  173.         padding: 2em 2em 1.7em 2em;
  174.         margin-bottom: -10px;
  175. }

advertising

Update the Post

Either update this post and resubmit it with changes, or make a new post.

You may also comment on this post.

update paste below
details of the post (optional)

Note: Only the paste content is required, though the following information can be useful to others.

Save name / title?

(space separated, optional)



Please note that information posted here will expire by default in one month. If you do not want it to expire, please set the expiry time above. If it is set to expire, web search engines will not be allowed to index it prior to it expiring. Items that are not marked to expire will be indexable by search engines. Be careful with your passwords. All illegal activities will be reported and any information will be handed over to the authorities, so be good.

worth-right
fantasy-obligation
fantasy-obligation