Advertisement
Guest User

Untitled

a guest
Jun 14th, 2012
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 4.82 KB | None | 0 0
  1. html{height: 100%;}     body {height: 100%;}    
  2.  
  3.     .goog-tabpane {
  4.       background: threedface;
  5.       padding-left: 1px;
  6.       position: relative;
  7.     }
  8.  
  9.     .goog-tabpane-tabs {
  10.       list-style: none;
  11.       margin: 0px;
  12.       padding: 0px;
  13.       height: 4ex;
  14.       position: relative;
  15.     }
  16.  
  17.     .goog-tabpane-left .goog-tabpane-tabs {
  18.       float: left;
  19.     }
  20.  
  21.     .goog-tabpane-right .goog-tabpane-tabs {
  22.       float: right;
  23.     }
  24.  
  25.     .goog-tabpane-cont {
  26.       overflow: auto;
  27.       background: threedface;
  28.       border: 1px solid;
  29.       border-color: threedhighlight threedshadow threedshadow threedhighlight;
  30.       padding: 2px;
  31.       height: 200px;
  32.     }
  33.  
  34.     .goog-tabpane-tab, .goog-tabpane-tab-selected {
  35.       display: block;
  36.       padding: 0px 3ex;
  37.       background: threedface;
  38.       border: 1px solid;
  39.       margin: 0px;
  40.     }
  41.  
  42.     .goog-tabpane-top .goog-tabpane-tab,
  43.     .goog-tabpane-top .goog-tabpane-tab-selected,
  44.     .goog-tabpane-bottom .goog-tabpane-tab,
  45.     .goog-tabpane-bottom .goog-tabpane-tab-selected {
  46.       float: left;
  47.       height: 4ex;
  48.     }
  49.  
  50.     .goog-tabpane-top .goog-tabpane-tab,
  51.     .goog-tabpane-top .goog-tabpane-tab-selected {
  52.       border-color: threedhighlight threedshadow threedface threedhighlight;
  53.     }
  54.  
  55.     .goog-tabpane-bottom .goog-tabpane-tab,
  56.     .goog-tabpane-bottom .goog-tabpane-tab-selected {
  57.       border-color: threedface threedshadow threedshadow threedhighlight;
  58.     }
  59.  
  60.     .goog-tabpane-left .goog-tabpane-tab,
  61.     .goog-tabpane-left .goog-tabpane-tab-selected {
  62.       border-color: threedhighlight threedface threedshadow threedhighlight;
  63.     }
  64.  
  65.     .goog-tabpane-right .goog-tabpane-tab,
  66.     .goog-tabpane-right .goog-tabpane-tab-selected {
  67.       border-color: threedhighlight threedshadow threedshadow threedface;
  68.     }
  69.  
  70.     .goog-tabpane-top .goog-tabpane-tab {
  71.       margin-top: 3px;
  72.     }
  73.  
  74.     .goog-tabpane-tab-selected {
  75.       font-weight: bold;
  76.     }
  77.  
  78.     .goog-tabpane-tab-selected,
  79.     .goog-tabpane-tab-selected {
  80.       padding-bottom: 2px;
  81.       padding-top: 2px;
  82.     }
  83.  
  84.     .goog-tabpane-top .goog-tabpane-tab-selected {
  85.       position: relative;
  86.       top: 1px;
  87.     }
  88.  
  89.     .goog-tabpane-bottom .goog-tabpane-tab-selected {
  90.       position: relative;
  91.       top: -1px;
  92.     }
  93.  
  94.     .goog-tabpane-left .goog-tabpane-tab-selected {
  95.       position: relative;
  96.       left: 1px;
  97.     }
  98.  
  99.     .goog-tabpane-right .goog-tabpane-tab-selected {
  100.       position: relative;
  101.       left: -1px;
  102.     }
  103.  
  104.     #tabpane2 .goog-tabpane-tab {
  105.       margin-top: 0px;
  106.     }
  107.  
  108.     p {
  109.       margin-top: 0px;
  110.     }
  111.    
  112.         .hr_clear {
  113.       float: none;
  114.       clear: both;
  115.       height: 0px;
  116.       padding: 10px 0px 0px 0px;
  117.       border: 0px;
  118.       margin: 0px;
  119.       visibility: hidden;
  120.     }
  121.  
  122.     .horiz1_class,
  123.     .horiz3_class,
  124.     .horiz5_class {
  125.       padding: 8px 12px;
  126.       /* box_height + 2 * (padding + border + margin) =
  127.          50 + 2 * (5 + 2 + 4) = 72px */
  128.       height: 72px;
  129.       border: 2px solid #000000;
  130.     }
  131.     .horiz1_class { float: left; }
  132.     .horiz3_class { float: left; }
  133.     .horiz5_class { float: left; }
  134.  
  135.     .horiz1_class div { float: left; }
  136.     .horiz3_class div { float: right; }
  137.     .horiz5_class div { float: left; }
  138.  
  139.     .horiz5_class {
  140.       width: 288px;
  141.       height: 216px;
  142.     }
  143.  
  144.     .vert_table td {
  145.       vertical-align: top;
  146.       padding: 0px 20px;
  147.     }
  148.  
  149.     .vert1_class,
  150.     .vert2_class {
  151.       padding: 12px 8px;
  152.       /* box_width + 2 * (padding + border + margin) =
  153.          50 + 2 * (5 + 2 + 2) = 68px */
  154.       width: 68px;
  155.       border: 2px solid #000000;
  156.     }
  157.  
  158.     div.red_box,
  159.     div.yellow_box,
  160.     div.blue_box,
  161.     div.purple_box {
  162.       width: 50px;
  163.       height: 50px;
  164.       padding: 5px;
  165.       margin: 4px 2px;
  166.       font-family: verdana, sans-serif;
  167.       font-size: 36px;
  168.       font-weight: bold;
  169.       text-align: center;
  170.     }
  171.     div.red_box {
  172.       border: 2px solid #CC0000;
  173.       color: #CC0000;
  174.     }
  175.     div.yellow_box {
  176.       border: 2px solid #CCCC00;
  177.       color: #CCCC00;
  178.     }
  179.     div.blue_box {
  180.       border: 2px solid #0000CC;
  181.       color: #0000CC;
  182.     }
  183.     div.purple_box {
  184.       border: 2px solid #993399;
  185.       color: #993399;
  186.     }
  187.  
  188.     #test {
  189.       background-color: #CCFFCC;
  190.       width: 100px;
  191.       height: 100px;
  192.       padding: 13px;
  193.       border: 11px solid #339933;
  194.       margin: 15px;
  195.     }
  196.  
  197.     /* The following styles are used in the JS. */
  198.  
  199.     .cursor_pointer {
  200.       cursor: pointer;
  201.     }
  202.  
  203.     .cursor_move {
  204.       cursor: move;
  205.       -moz-user-select: none;
  206.     }
  207.  
  208.     .opacity_40 {
  209.       opacity: 0.4;
  210.       -moz-opacity: 0.4;
  211.       filter: alpha(opacity=40);
  212.     }
  213.  
  214.     .drag_hover_class {
  215.       border-color: #009900;
  216.       background-color: #CCFFCC;
  217.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement