Advertisement
Guest User

Untitled

a guest
Oct 20th, 2014
17,685
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.95 KB | None | 0 0
  1. @import url(http://fonts.googleapis.com/css?family=Roboto:400,300,500);
  2. @import url(http://fonts.googleapis.com/css?family=Alegreya+Sans+SC:800);
  3.  
  4. /*Links*/
  5. [href] {
  6.     text-decoration: none;
  7.     color: #C4573F;
  8. }
  9.  
  10. [href]:hover {
  11.     color: #9ac714;
  12. }
  13.  
  14.  
  15. /*Main container*/
  16. #list_surround {
  17.     position: relative;
  18.     background-image: url('http://myanimelist.net/images/userwalls/240632.jpg');
  19.     background-repeat: no-repeat;
  20.     background-position: 0px 125px;
  21.     background-size: 30% auto;
  22.     background-attachment: fixed;
  23.     font-family: "Roboto", "Arial";
  24.     font-size: 16px;
  25. }
  26.  
  27. /*Hide navigation (menu for Watching, Completed, etc.)*/
  28. [class^=status_] {
  29.     display: none;
  30. }
  31.  
  32. /*Hide stats*/
  33. #grand_totals, .category_totals {
  34.     display: none;
  35. }
  36.  
  37. /*Position list*/
  38. #list_surround [cellpadding="0"] {
  39.     width: 640px;
  40.     left: 33%;
  41.     position: relative;
  42. }
  43.  
  44. /*Categories (Watching, Completed, etc.)*/
  45. [class^=header_]  {
  46.     margin-right: 100%;
  47.     margin-top: 10px;
  48.     white-space: nowrap;
  49. }
  50.  
  51. .header_title {
  52.     color: #655050;
  53.     font-family: "Alegreya Sans SC", "Arial";
  54.     font-size: 32px;
  55.     font-weight: 800;
  56.     padding: 10px 0 0;
  57. }
  58.  
  59. /*Column headers*/
  60. .table_header {
  61.     padding: 8px 8px 0px 8px;
  62. }
  63.  
  64. .table_headerLink {
  65.     color: #e29a8d;
  66.     font-size: 12px;
  67.     font-weight: 300;
  68. }
  69.  
  70. /*Rows*/
  71. .td1 {
  72.     background-color: #FFFFFF;
  73. }
  74.  
  75. .td2 {
  76.     background-color: #F5F4E9;
  77.     border-top: 1px solid #DEE8C2;
  78.     border-bottom: 1px solid #DEE8C2;
  79. }
  80.  
  81. .td2:first-child {
  82.     border-left: 1px solid #DEE8C2;
  83. }
  84.  
  85. .td2:last-child {
  86.     border-right: 1px solid #DEE8C2;
  87. }
  88.  
  89. .td1, .td2 {
  90.     padding: 8px;
  91. }
  92.  
  93. .td1, .td2, .animetitle {
  94.     color: #5C5347;
  95.     font-size: 13px;
  96. }
  97.  
  98. [id^="scoreval"] {
  99.     color: #aa5f4a;
  100. }
  101.  
  102. /*Add/Edit - More*/
  103. [style^="float: right"] {
  104.     display: none;
  105. }
  106.  
  107. /*Copyright*/
  108. #copyright {
  109.     font-size: 12px;
  110.     font-weight: 300;
  111.     padding-top: 60px;
  112.     margin-bottom: 30px;
  113. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement