Advertisement
Guest User

Untitled

a guest
Dec 17th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. @import url(https://fonts.googleapis.com/css?family=Roboto:400,500,700,300,100);
  2.  
  3. body {
  4. background-color: #3e94ec;
  5. font-family: "Roboto", helvetica, arial, sans-serif;
  6. font-size: 16px;
  7. font-weight: 400;
  8. }
  9.  
  10. div.table-title {
  11. display: block;
  12. margin: auto;
  13. max-width: 600px;
  14. padding:5px;
  15. width: 100%;
  16. }
  17.  
  18. .table-title h3 {
  19. color: #fafafa;
  20. font-size: 30px;
  21. font-weight: 400;
  22. }
  23.  
  24.  
  25. /*** Table Styles **/
  26.  
  27. .table-fill {
  28. background: white;
  29. border-radius:3px;
  30. border-collapse: collapse;
  31. height: 320px;
  32. margin: auto;
  33. max-width: 600px;
  34. padding:5px;
  35. width: 100%;
  36. }
  37.  
  38. th {
  39. color:#D5DDE5;;
  40. background:#1b1e24;
  41. border-bottom:4px solid #9ea7af;
  42. border-right: 1px solid #343a45;
  43. font-size:23px;
  44. font-weight: 100;
  45. padding:24px;
  46. text-align:left;
  47. vertical-align:middle;
  48. }
  49.  
  50. th {
  51. border-top-right-radius:3px;
  52. border-top-left-radius:3px;
  53. }
  54.  
  55. tr {
  56. border-top: 1px solid #C1C3D1;
  57. border-bottom: 1px solid #C1C3D1;
  58. color:#666B85;
  59. font-size:16px;
  60. }
  61.  
  62. tr:hover td {
  63. background:#4E5066;
  64. color:#FFFFFF;
  65. }
  66.  
  67. tr:first-child {
  68. border-top:none;
  69. }
  70.  
  71. tr:last-child {
  72. border-bottom: 1px solid #4E5066;
  73. }
  74.  
  75. tr:nth-child(odd) td {
  76. background:#EBEBEB;
  77. }
  78.  
  79. tr:nth-child(odd):hover td {
  80. background:#4E5066;
  81. }
  82.  
  83. tr:last-child td:first-child {
  84. border-bottom-left-radius:3px;
  85. }
  86.  
  87. tr:last-child td:last-child {
  88. border-bottom-right-radius:3px;
  89. }
  90.  
  91. td {
  92. background:#FFFFFF;
  93. padding:20px;
  94. text-align:left;
  95. vertical-align:middle;
  96. font-weight:300;
  97. font-size:18px;
  98. border-right: 1px solid #C1C3D1;
  99. }
  100.  
  101. td:last-child {
  102. border-right: 0px;
  103. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement