style.css 709 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. @import url('https://fonts.googleapis.com/css?family=Arimo');
  2. body {
  3. font-family: 'Arimo', sans-serif;
  4. }
  5. pane {
  6. border: solid 1px rgba(0,0,0,0.3);
  7. display:flex;
  8. flex-direction: column;
  9. padding:20px;
  10. margin-bottom:20px;
  11. }
  12. pane > h3 {
  13. margin:0px;
  14. margin-bottom: 10px;
  15. }
  16. .control > label {
  17. text-align:right;
  18. }
  19. table {
  20. width:100%;
  21. border-collapse: collapse;
  22. }
  23. table thead {
  24. border-bottom: solid 2px rgba(0,0,0,0.2);
  25. }
  26. table thead tr th {
  27. padding-bottom:10px;
  28. }
  29. table tbody tr{
  30. cursor:pointer;
  31. background: rgba(0,0,0,0);
  32. transition: all 0.3s;
  33. }
  34. table tbody tr:hover {
  35. background: rgba(150,200,200,0.3);
  36. transition: all 0.3s;
  37. }
  38. table tbody tr td {
  39. padding:12px;
  40. text-align:center;
  41. }