2
0

style.css 902 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. body {
  2. font-family: Helvetica Neue, Arial, sans-serif;
  3. font-size: 14px;
  4. color: #444;
  5. }
  6. table {
  7. border: 2px solid #42b983;
  8. border-radius: 3px;
  9. background-color: #fff;
  10. }
  11. th {
  12. background-color: #42b983;
  13. color: rgba(255,255,255,0.66);
  14. cursor: pointer;
  15. -webkit-user-select: none;
  16. -moz-user-select: none;
  17. -ms-user-select: none;
  18. user-select: none;
  19. }
  20. td {
  21. background-color: #f9f9f9;
  22. }
  23. th, td {
  24. min-width: 120px;
  25. padding: 10px 20px;
  26. }
  27. th.active {
  28. color: #fff;
  29. }
  30. th.active .arrow {
  31. opacity: 1;
  32. }
  33. .arrow {
  34. display: inline-block;
  35. vertical-align: middle;
  36. width: 0;
  37. height: 0;
  38. margin-left: 5px;
  39. opacity: 0.66;
  40. }
  41. .arrow.asc {
  42. border-left: 4px solid transparent;
  43. border-right: 4px solid transparent;
  44. border-bottom: 4px solid #fff;
  45. }
  46. .arrow.dsc {
  47. border-left: 4px solid transparent;
  48. border-right: 4px solid transparent;
  49. border-top: 4px solid #fff;
  50. }