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.
 
 
 
 
 
 

92 lines
1.1 KiB

  1. @font-face {
  2. font-family: 'Roboto';
  3. src: url('../fonts/Roboto-Light.ttf');
  4. }
  5. html, body{
  6. margin:0px;
  7. padding:0px;
  8. font-family: 'Roboto';
  9. }
  10. #rounds, #participants{
  11. padding:10px;
  12. }
  13. .round{
  14. display:flex;
  15. flex-wrap: wrap;
  16. }
  17. .group{
  18. margin:5px;
  19. border: 1px solid #aaa;
  20. border-radius:3px;
  21. padding:5px;
  22. width: 15%;
  23. }
  24. h4{
  25. margin:5px;
  26. }
  27. .group ul {
  28. list-style-type: square;
  29. }
  30. label{
  31. display:inline-block;
  32. }
  33. .participant{
  34. margin:2px;
  35. }
  36. .empty-slot{
  37. display:none;
  38. }
  39. #participants{
  40. border-bottom: 2px solid black;
  41. padding-bottom:10px;
  42. margin-top:20px;
  43. }
  44. nav{
  45. display: flex;
  46. justify-content: space-between;
  47. padding:10px;
  48. }
  49. button{
  50. background-color: white;
  51. border: 1px solid #333;
  52. border-radius: 2px;
  53. cursor:pointer;
  54. }
  55. button img{
  56. vertical-align: middle;
  57. }
  58. button:hover{
  59. background-color: #ddd;
  60. }
  61. button:disabled, button[disabled],button[disabled]:active{
  62. background-color: rgba(0,0,0,0.15);
  63. border-color:rgba(0,0,0,0.25);
  64. cursor:not-allowed;
  65. }
  66. #settings > div{
  67. height:32px;
  68. }
  69. #settings input{
  70. width:80px;
  71. }
  72. #settings img{
  73. vertical-align: bottom;
  74. margin-right:10px;
  75. }
  76. #filechooser{
  77. display:none;
  78. }