A LILiK chrome extension for the well known 9gag website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1015 B

  1. body{
  2. background: #333;
  3. color: #efefef;
  4. margin: 0;
  5. padding: 0;
  6. font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  7. font-weight: 300;
  8. }
  9. body > *{
  10. width: 90%;
  11. margin: 0 auto;
  12. }
  13. header{
  14. overflow: hidden;
  15. padding-top: 20px;
  16. }
  17. header > *{
  18. float: left;
  19. vertical-align: middle;
  20. }
  21. header h1{
  22. font-size: 50px;
  23. font-weight: 100;
  24. margin-left: 10px;
  25. }
  26. section.container{
  27. clear: both;
  28. }
  29. table{
  30. width: 100%;
  31. font-size: 18px;
  32. font-weight: 100;
  33. letter-spacing: 0.02em;
  34. }
  35. table tr:nth-child(2n+1){
  36. background-color: #666;
  37. }
  38. table tr:nth-child(2n){
  39. background-color: #444;
  40. }
  41. table .description{
  42. font-size: 12px;
  43. font-style: italic;
  44. padding-left: 5px;
  45. }
  46. table > thead > tr > td{
  47. background-color: #222;
  48. }
  49. table > thead > tr > td:first-child{
  50. width: 70%;
  51. }
  52. table td:nth-child(2) > *:nth-child(odd){
  53. float: left;
  54. clear: left;
  55. }
  56. table td:nth-child(2) > *:nth-child(even){
  57. float: left;
  58. clear: none;
  59. }
  60. table td{
  61. padding: 5px;
  62. }