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.
 
 
 
 
 
 

80 lines
988 B

  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. #participants{
  37. border-bottom: 2px solid black;
  38. padding-bottom:10px;
  39. margin-top:20px;
  40. }
  41. nav{
  42. display: flex;
  43. justify-content: space-between;
  44. padding:10px;
  45. }
  46. button{
  47. background-color: white;
  48. border: 1px solid #333;
  49. border-radius: 2px;
  50. cursor:pointer;
  51. }
  52. button img{
  53. vertical-align: middle;
  54. }
  55. button:hover{
  56. background-color: #ddd;
  57. }
  58. #settings > div{
  59. height:32px;
  60. }
  61. #settings input{
  62. width:80px;
  63. }
  64. #settings img{
  65. vertical-align: bottom;
  66. margin-right:10px;
  67. }
  68. #filechooser{
  69. display:none;
  70. }