file_server.css 895 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. h1 {font-size: 2em;}
  2. h2 {font-size: 1.5em; margin-block-start: 0.0em; margin-block-end: 0.2em;}
  3. h3 {font-size: 1.2em;}
  4. p {font-size: 1em;}
  5. #files_table {
  6. font-family: Arial, Helvetica, sans-serif;
  7. border-collapse: collapse;
  8. width: 100%;
  9. }
  10. #files_table td, #files_table th {
  11. border: 1px solid #ddd;
  12. padding: 8px;
  13. }
  14. #files_table tr:nth-child(even){
  15. background-color: #f2f2f2;
  16. }
  17. #files_table tr:hover {
  18. background-color: #ddd;
  19. }
  20. #files_table th {
  21. padding-top: 12px;
  22. padding-bottom: 12px;
  23. text-align: left;
  24. background-color:lightgrey;
  25. color: black;
  26. }
  27. input[type=file] {
  28. padding: 5px 0px;
  29. display: inline-block;
  30. font-size: 16px;
  31. }
  32. input[type=text] {
  33. padding: 5px 10px;
  34. display: inline-block;
  35. border: 1px solid #ccc;
  36. font-size: 16px;
  37. }
  38. .button {
  39. padding: 4px 10px;
  40. width: 100px;
  41. font-size: 16px;
  42. }