Advertisement
Guest User

Tenno Seremel

a guest
May 21st, 2010
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.11 KB | None | 0 0
  1.  
  2. html { background: #fff url("bg-white.jpg"); }
  3. BODY { background: transparent; font-family: sans-serif; }
  4.  
  5. .hr { background: #B0B0B0; }
  6. hr { color: #B0B0B0; }
  7.  
  8. .head A { text-decoration: none; }
  9.  
  10. /* info boxes on columns */
  11. DIV.boxlet H2
  12.    {
  13.     text-align: center;
  14.     color: #eee;
  15.     font-size: medium;
  16.     font-family: sans-serif;
  17.     background-color: #000;
  18.     border: 1px;
  19.     font-weight: bold;
  20.     margin-top: 0;
  21.    }
  22.  
  23. DIV.boxlet H3
  24.    {
  25.     font-size: x-small;
  26.    }
  27.  
  28. DIV.boxlet H2 A { text-decoration: none; color: #eee }
  29. DIV.boxlet A { text-decoration: none }
  30.  
  31. DIV.boxlet
  32.    {
  33.     font-size: small;
  34.     font-family: serif;
  35.     margin-bottom: 30px;
  36.     padding-bottom: 5px;
  37.     text-align: left;
  38.     background-color: #eedec4;
  39.     border: 1px;
  40.    }
  41.  
  42. DIV.columnimg
  43.    {
  44.     font-size: small;
  45.     font-family: serif;
  46.     margin-top: 30px;
  47.     text-align: center;
  48.    }
  49.  
  50. /* news items */
  51. DIV.news H2 { font-family: sans-serif;  margin-bottom: 5px; margin-top: 5px; }
  52. .news H2 A { color: #786af2; }
  53. H1 A { color: #786af2 }
  54. DIV.news DIV.nav { text-align: left; margin-top: 1em; }
  55.  
  56. /* view-forum */
  57. DIV.forum A { text-decoration: none; }
  58. DIV.forum A:link { color: black; }
  59. .color1 { background: #aea6f2; }
  60.  
  61. .nav {
  62.   border: #aea6f2 1px solid;
  63. }
  64.  
  65. table.nav>tbody>tr>td {
  66.   border: #aea6f2 1px solid;
  67. }
  68.  
  69. TR.color2 { background: #f0f0f0; }
  70.  
  71. .message-table {
  72.   background: #aea6f2;
  73.   border-collapse: collapse;
  74. }
  75.  
  76. .message-table tbody {
  77.   background: #f0f0f0;
  78. }
  79.  
  80. .message-table { border-collapse: collapse; }
  81. .message-table th, .message-table td { border: 1px solid #837a6c; }
  82. .message-table thead, .message-table tfoot { background: #eedec4; }
  83. .message-table tfoot td a:link, .message-table tfoot td a:visited { color: #000; }
  84. .message-table tbody a:link { font-weight: bold; }
  85. .message-table tbody a:visited { font-weight: normal; color: #444; }
  86. .message-table tbody a:first-child:visited { margin-left: 3ex; }
  87.  
  88. /* view-message */
  89. .entry-body .nav A {
  90.   text-decoration: underline;
  91.   margin-bottom: 0;
  92. }
  93.  
  94.  
  95. DIV.messages .title { background: #eedec4; color: #000; }
  96. .messages .comment .title { background: #111; color: #eee; }
  97. .messages .comment .title a:link, .messages .comment .title a:visited {
  98.     color: #eee !important; /*text-decoration: underline;*/
  99. }
  100. .messages H1 A { color: black }
  101.  
  102. /* comment signature */
  103. div.sig {
  104.     margin: 1ex 0 0 70%;
  105.     font-style: italic;
  106. }
  107.  
  108. div.sig a.nick {
  109.     text-decoration: none;
  110. }
  111. .sign a:link, .sign a:visited { color: inherit !important; text-decoration: none !important; }
  112. .sign a:hover { color: inherit !important; text-decoration: underline !important; }
  113.  
  114. /* general */
  115. DIV.notes
  116.    {
  117.     text-align: center;
  118.     font-style: italic;
  119.     margin-top: 0.5em;
  120.     margin-bottom: 0.5em;
  121.     border: solid black;
  122.    }
  123.  
  124. .nav A {
  125.   text-decoration: none
  126. }
  127.  
  128. /* rewrite */
  129. pre { font-size: 1em; }
  130. .msg:target { border: 4px dashed #000 !important; border-top: none !important; }
  131. form * { font-size: medium; }
  132. form #msg { display: block; margin-bottom: 1em; margin-top: 1em; width: 100%; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement