Advertisement
Azdle

Unlink CSS

Feb 8th, 2012
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.71 KB | None | 0 0
  1. /* Common to All Pages */
  2. body {
  3.     margin:0;
  4.     padding:0;
  5.     border:0;
  6.     width:100%;
  7.     background: #6E6960;
  8. }
  9. article a:link {
  10.     color: #000000;
  11.     border-bottom: 1px dotted #000000;
  12.     text-decoration: none;
  13. }
  14. article a:visited {
  15.     color: #000000;
  16.     border-bottom: 1px dotted #000000;
  17.     text-decoration: none;
  18. }
  19. article a:hover, article a:active {
  20.     color: #fff;
  21.     background-color: #D14600;
  22. }
  23. a img:hover{
  24.     border: 5px solid #2f2f2f;
  25.     background-color: #ffffff;
  26. }
  27. a img{
  28.     border: 5px solid #000;
  29. }
  30.  
  31. h1, h2, h3 {
  32.     margin:0em 0 .2em 0;
  33.     padding:0;
  34.     color: #D14600;
  35. }
  36. p {
  37.     margin:.4em 0 .8em 0;
  38.     padding:0;
  39. }
  40. header{
  41.     margin-left: auto;
  42.     margin-right: auto;
  43.     max-width: 1000px;
  44.     min-width:700px;
  45. }
  46. #header {
  47.     clear:both;
  48.     float:left;
  49.     width:100%;
  50.     display: inline;
  51. }
  52. #header p,
  53. #header h1,
  54. #header h2 {
  55.     padding:.4em 15px 0 15px;
  56.     margin:0;
  57. }
  58. #header_img{
  59.     padding-left:1em;
  60. }
  61. nav{
  62.     float:right;
  63.     padding: 2.5em;
  64.     padding-bottom:.2em;
  65.     padding-right:1em;
  66. }
  67. nav li {
  68.     display: inline;
  69.     list-style-type: none;
  70.     margin-right: 2em;
  71. }
  72. nav a:link {
  73.     font-size: 1.3em;
  74.     background-color: #4A4A4A;
  75.     color: white;
  76.     padding: 0.2em;
  77.     text-decoration: none;
  78.     border-radius: .3em;
  79.     padding-right: .5em;
  80.     padding-left: .5em;
  81.     font-family: sans-serif;
  82. }
  83. nav a:visited {
  84.     background-color: #4A4A4A;
  85.     color: white;
  86.  
  87. }
  88. nav a:hover, nav a:active {
  89.     color: white;
  90.     background-color: #D14600;
  91. }
  92. #main_area{
  93.     background-color: white;
  94.     width:100%;
  95.     display:table;
  96. }
  97. article{
  98.     margin-left: auto;
  99.     margin-right: auto;
  100.     max-width: 1000px;
  101.     min-width:700px;
  102. }
  103. #main_section{
  104.     display:table-cell;
  105.     padding: 1em;
  106. }
  107. #info_section{
  108.     display:table-cell;
  109.     width:200px;
  110.     padding: 1em;
  111. }
  112. aside {
  113. }
  114. footer{
  115.     margin-left: auto;
  116.     margin-right: auto;
  117.     max-width: 1000px;
  118.     min-width:700px;
  119.     color:white;
  120. }
  121. footer p{
  122.     float:right;
  123.     margin:.5em;
  124.     margin-right:2em;
  125. }
  126. /* Blog */
  127. #older_link {
  128.     float:right;
  129. }
  130. #newer_link {
  131.     float:left;
  132. }
  133. .itemcontent {
  134.     padding: .4em;
  135.     border: 1px dotted #A4A4A4
  136. }
  137. .postinfo {
  138.     font-size: 8pt;
  139.     padding-left: 5px;
  140. }
  141.  
  142. .comment_avatar{
  143.     float:left;
  144.     padding:0;
  145.     padding-right:5px;
  146.     margin:0;
  147. }
  148.  
  149. ul.bloglist{
  150.     list-style: none;
  151.     margin-bottom: .6em;
  152. }
  153.  
  154.  
  155. /* Projects */
  156. li.listTitle {
  157.     list-style:none;
  158.     font-size: 1em;
  159.     color: #036;
  160.     padding-top: 1em;
  161.     padding-bottom: .3em;
  162.     font-weight: normal;
  163. }
  164. li.listDescription {
  165.     list-style:none;
  166.     font-size: 1em;
  167.     padding-left: 2em;
  168. }
  169.  
  170.  
  171. /* Unknown *//*
  172. .itemcontent img{
  173.     margin:0px 0px -5px;
  174.     margin-left: auto;  /*These don't actually do anything to images that are also links, need to fix somehow* /
  175.     margin-right: auto;
  176. }
  177. textarea{
  178.     width:100%;
  179. }
  180. li.comment{
  181.     margin-bottom:5px;
  182.     min-height:80px;
  183. }
  184. ul.comments{
  185.     list-style-type:none;
  186. }
  187. ul.projectsList{
  188.     list-style-type:none;
  189. }
  190.  
  191. #footer {
  192.     clear:both;
  193.     float:left;
  194.     width:100%;
  195.     border-top:1px solid #000;
  196. }
  197. #footer p {
  198.     padding:10px;
  199.     margin:0;
  200.     float:right;
  201. }
  202. #openid_url {
  203.     background: #FFFFFF url('/resources/img/openid-icon-small.gif') no-repeat scroll 0pt 50%;
  204.     padding-left: 18px;
  205. }
  206. .avatar{
  207.     border: 2px solid #000000;
  208. }
  209. .valid_user_name{
  210.     color: #000;
  211.     padding-left: 10px;
  212.     padding-bottom: 0;
  213. }
  214.  
  215.  
  216. /* Notice Boxes */
  217. .error, .alert, .notice, .success, .info {padding:0.8em;margin-bottom:1em;border:2px solid #ddd;}
  218. .error, .alert {background:#fbe3e4;color:#8a1f11;border-color:#fbc2c4;}
  219. .notice {background:#fff6bf;color:#514721;border-color:#ffd324;}
  220. .success {background:#e6efc2;color:#264409;border-color:#c6d880;}
  221. .info {background:#d5edf8;color:#205791;border-color:#92cae4;}
  222. .error a, .alert a {color:#8a1f11;}
  223. .notice a {color:#514721;}
  224. .success a {color:#264409;}
  225. .info a {color:#205791;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement