Guest User

Untitled

a guest
Apr 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.17 KB | None | 0 0
  1. /* main box styles */
  2. body {
  3.     /*ensure that return false on links is effective even when page isn't long enough.*/
  4.     min-height: 75em;
  5. }
  6. div#contentcontainer{
  7.     width: 65%;
  8.     margin: 0px auto;
  9.     text-align: right;
  10. }
  11. div#graphcontainer{
  12.     margin: 0 auto;
  13.     height: 350px;
  14. }
  15. div#info {
  16.     width: 80%;
  17.     margin: 0 auto;
  18. }
  19.  
  20. /* header styles */
  21. h6#login {
  22.     width: 100%;
  23.     position: fixed;
  24.     top: 0;
  25.     z-index: 9999;
  26.     margin: 0;
  27.     padding: 5px;
  28. }
  29. h1#header {
  30.     margin: 10px auto;
  31.     width: 70%;
  32.     font-size: 3em;
  33.     font-family: 'helvetica neue', 'lucida grande', arial, sans;
  34.     font-weight: 900;
  35.     text-align: center;
  36. }
  37. h4#tagline {
  38.     text-align: right;
  39.     width: 70%;
  40.     margin: 0 auto;
  41.     font-family: times, serif;
  42.     font-weight: normal;
  43.     font-style: italic;
  44. }
  45. #toolbar {
  46.     display: block;
  47.     background-color: #f2ce44;
  48.     width: 70%;
  49.     margin:10px auto 0 auto;
  50.     padding: 7px;
  51. }
  52. #toolbar a {
  53.     color: black;
  54.     font-family: 'helvetica neue', 'lucida grande', arial, sans;
  55.     text-decoration: none;
  56.     font-weight: bold;
  57.     margin-right: 30px;
  58. }
  59.  
  60. /*links styles */
  61. article {
  62.     width: 100%;
  63.     float: left;
  64.     border-bottom: 1px #999 dotted;
  65. }
  66. article h1 {
  67.     text-align: left;
  68.     font-size: 20px;
  69.     font-weight: normal;
  70. }
  71. article p {
  72.     text-align: left;
  73. }
  74. article a:visited {
  75.     color: blue;
  76. }
  77. h3#nolinks {
  78.     font-weight: normal;
  79.     text-align: left;
  80.     border-bottom: 1px dotted black;
  81.     padding-bottom: 10px;
  82. }
  83. #votebox {
  84.     display: block;
  85.     width: 10%;
  86.     float: left;
  87.     padding-top: 20px;
  88. }
  89. .vote_buttons {
  90.     display: block; float: left;
  91.     width: 20px;
  92.     height: 45px;
  93.     background-image: url('arrow_sprite.png');
  94. }
  95. .vote_buttons a {
  96.     display: block;
  97.     width: 100%;
  98.     height: 22px;
  99.     color: #000; text-decoration: none;
  100. }
  101. .votes_count {
  102.     display: block;
  103.     float: left;
  104.     font-size: 1.75em;
  105.     margin-left: 7px;
  106. }
  107. .byline {
  108.     float: left;
  109.     text-align: left;
  110.     font-size: .75em;
  111. }
  112.  
  113.  
  114. /* form styles */
  115. input {
  116.     border:#666666 solid 1px;
  117.     height:24px;
  118.     width: 300px;
  119.     margin: 10px  0;
  120. }
  121. textarea {
  122.     border:#666666 solid 1px;
  123.     height:80px;
  124.     margin:10px 0;
  125.     width: 100%;
  126. }
  127. input.submit{
  128.     width: 150px;
  129. }
  130.  
  131. /*comments */
  132. #dsq-comments {text-align: left;}
  133.  
  134. /* popup styles */
  135. #backgroundPopup{  
  136.     display:none;  
  137.     position:fixed;  
  138.     _position:absolute; /* hack for internet explorer 6*/  
  139.     height:100%;  
  140.     width:100%;  
  141.     top:0;  
  142.     left:0;  
  143.     background:#000000;  
  144.     border:1px solid #cecece;  
  145.     z-index:1;  
  146. }  
  147. #popupContact{  
  148.     display:none;  
  149.     position:fixed;  
  150.     _position:absolute; /* hack for internet explorer 6*/  
  151.     //height:200px;  
  152.     width:408px;  
  153.     background:#FFFFFF;  
  154.     border:2px solid #cecece;  
  155.     z-index:2;  
  156.     padding:12px;  
  157.     font-size:13px;  
  158. }  
  159. #popupContact h1{  
  160.     text-align:left;  
  161.     color:#6FA5FD;  
  162.     font-size:22px;  
  163.     font-weight:700;  
  164.     border-bottom:1px dotted #D3D3D3;  
  165.     padding-bottom:2px;  
  166.     margin-bottom:20px;  
  167. }  
  168. #popupContactClose{  
  169.     font-size:14px;  
  170.     line-height:14px;  
  171.     right:6px;  
  172.     top:4px;  
  173.     position:absolute;  
  174.     color:#6fa5fd;  
  175.     font-weight:700;  
  176.     display:block;  
  177. }
  178.  
  179. /* footer semblance */
  180. div#devbar {
  181.     display: block;
  182.     position: fixed;
  183.     bottom: 0;
  184.     right: 5px;
  185. }
Add Comment
Please, Sign In to add comment