Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.26 KB | None | 0 0
  1. /*///////////////////////////////////////*
  2. Universal  
  3. ////////////////////////////////////////*/
  4.  
  5. * { outline: none; }
  6. body { font-family: Helvetica, Arial, sans-serif; background: #fff; color: #555; font-size:75%; }
  7. h1, h2, h3, h4, h5 { color:#222; }
  8.  
  9. #movies { font-size:100%; }
  10.  
  11. a { text-decoration: none; color: #08c; cursor:pointer;}
  12. a:hover { text-decoration: underline; }
  13.  
  14. h1 { font: 30px Arial, Helvetica, sans-serif; letter-spacing:-1px; padding:30px 0 0 0; margin: 0; }
  15. h2 { font:15px Arial, Helvetica, sans-serif; padding: 0  0 3px 0; margin-bottom: 0; }
  16.  
  17. #main, #header { margin: 0 auto; width: 960px; overflow: hidden; }
  18.  
  19. #main {  border: none; background:#fff; text-align:center; margin-bottom: -4px;}
  20.  
  21. #title { text-align:center; color:#000; margin-bottom:8px;}
  22.  
  23. #header { margin-top: -20px; }
  24.  
  25. #login { text-align:center; margin-top: -20px; }
  26. #pass_field { width:200px; border: 1px solid #08c; text-align:center; }
  27.  
  28.  
  29.  
  30. /*///////////////////////////////////////*
  31. Movies 
  32. ////////////////////////////////////////*/
  33.  
  34. #randomiser {text-align:center; margin-bottom:15px;}
  35. .random {display:block;}
  36. .showall {display:block; margin-top:5px;}
  37.  
  38. #movies, #lastmov { text-align:center; border-spacing:0px; border:1px solid #cbcbcb; -moz-border-radius: 5px; -khtml-border-radius: 5px; -webkit-border-radius: 5px;}
  39.  
  40. .name {width:20%;}
  41. .year {width:7%;}
  42. .rating {width:7%;}
  43. .description {width:51%;}
  44. .quality {width:8%;}
  45. .imdb { width: 7%; }
  46.  
  47. th { background:#cbcbcb; padding:5px; color:#000;}
  48. td { padding: 6px 0 6px 0; vertical-align: middle; border-top:#cbcbcb 1px solid;}
  49.  
  50. .header { background-image: url(../img/tablebg.gif); background-repeat: no-repeat; background-position: center right; cursor: pointer; color:black;}
  51. .headerSortUp {background-image: url(../img/asc.gif);}
  52. .headerSortDown {background-image: url(../img/desc.gif);}
  53.  
  54. .headerSortDown, .headerSortUp {background-color: #D9D9D9; color:#333; border: 1px solid #CCC;}
  55.  
  56. #abbreviationstable th{ background:#fff;}
  57. #abbreviationstable td{ width:20%; text-align:center; border-top:none;}
  58. #abbreviationstable thead{ font-weight:bold; }
  59.  
  60. #totals, #latest, .abbreviations { margin-top:75px;}
  61.  
  62. #movies tbody tr.odd td { background-color:#eee; }
  63.  
  64. .integer { font-size: 14pt; font-weight: bold; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement