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.

51 lines
684 B

  1. // Fonts
  2. @import url("https://fonts.googleapis.com/css?family=Raleway:300,400,600");
  3. // Variables
  4. @import "variables";
  5. // Bootstrap
  6. @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap";
  7. .team {
  8. display: flex;
  9. align-items: center;
  10. .team-icon {
  11. display: inline-block;
  12. width: 40px;
  13. height: 40px;
  14. border-radius: 20px;
  15. margin-right: 10px;
  16. }
  17. .team-name {
  18. font-weight: bold;
  19. }
  20. }
  21. .profile {
  22. img {
  23. width: 30px;
  24. height: 30px;
  25. border-radius: 15px;
  26. }
  27. span {
  28. }
  29. }
  30. .player-list {
  31. ul {
  32. list-style-type: none;
  33. margin: 0;
  34. padding: 0;
  35. margin-bottom: 1em;
  36. }
  37. li {
  38. margin: 0;
  39. padding: 4px;
  40. }
  41. }