Tip: Click lines to highlight, hold ctrl/cmd to multi-select

http://codedumper.com/azova (16-Jul @ 20:26)

Syntax Highlighted Code

  1. <style type="text/css" media="screen">
  2.     body {
  3.         margin: 0;
  4.         padding: 0;
  5.         background: #1a1613 url(images/bg_tutBody.gif) repeat-x;
  6.     }
  7.     img { border: 0; }
  8.    
  9.     #siteWrap { /* The wrapper for my page icons and bubbles */
  10.         margin: 287px auto 0 auto;
  11.         width: 642px;
  12.         height: 345px;
  13.         position: relative;
  14.         background: transparent url(images/bg_pageWrap.jpg) no-repeat top left;
  15.     }
  16.    
  17.     #pageWrap { /* Wrapper for my page icons */
  18.         position: absolute;
  19.         z-index: 5;
  20.         top: 138px;
  21.         left: 134px;
  22.  
  23.     }
  24.     /* Page specific styles */
  25.     #psdPage {
  26.         margin-right: 19px;
  27.         float: left;
  28.         cursor: pointer;
  29.     }
  30.     #netPage {
  31.         margin-right: 20px;
  32.         float: left;
  33.         cursor: pointer;
  34.     }    
  35.     #audioPage {
  36.         float: left;
  37.         cursor: pointer;
  38.     }
  39.     #bubbleWrap { /* Wrapper for my bubbles */
  40.         position: absolute;
  41.         z-index: 10;
  42.         left: 158px;
  43.         top: 30px;
  44.     }
  45.     .bubble {
  46.         position: absolute;
  47.     }
  48.  
  49. </style>    
  50.  

Plain Code

<style type="text/css" media="screen">
    body {
        margin: 0;
        padding: 0;
        background: #1a1613 url(images/bg_tutBody.gif) repeat-x;
    }
    img { border: 0; }
    
    #siteWrap { /* The wrapper for my page icons and bubbles */
        margin: 287px auto 0 auto;
        width: 642px;
        height: 345px;
        position: relative;
        background: transparent url(images/bg_pageWrap.jpg) no-repeat top left;
    }
    
    #pageWrap { /* Wrapper for my page icons */
        position: absolute;
        z-index: 5;
        top: 138px;
        left: 134px;

    }
    /* Page specific styles */
    #psdPage {
        margin-right: 19px;
        float: left;
        cursor: pointer;
    }
    #netPage {
        margin-right: 20px;
        float: left;
        cursor: pointer;
    }    
    #audioPage {
        float: left;
        cursor: pointer;
    }
    #bubbleWrap { /* Wrapper for my bubbles */
        position: absolute;
        z-index: 10;
        left: 158px;
        top: 30px;
    }
    .bubble {
        position: absolute;
    }

</style>    

Permalink: http://codedumper.com/azova