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.

81 lines
1.1 KiB

  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: 40px;
  24. height: 40px;
  25. border-radius: 20px;
  26. border-width: 5px;
  27. border-style: solid;
  28. }
  29. span {
  30. }
  31. }
  32. .player-list {
  33. ul {
  34. list-style-type: none;
  35. margin: 0;
  36. padding: 0;
  37. margin-bottom: 1em;
  38. }
  39. li {
  40. margin: 0;
  41. padding: 4px 0;
  42. }
  43. }
  44. .tweet-queue {
  45. .tweet {
  46. border-bottom: 1px #ccc solid;
  47. padding: 4px;
  48. cursor:pointer;
  49. .mission {
  50. font-weight: bold;
  51. margin-top: 3px;
  52. }
  53. .text {
  54. margin-top: 6px;
  55. font-size: 10px;
  56. line-height: 12px;
  57. max-height: 36px;
  58. overflow: hidden;
  59. white-space: pre-wrap;
  60. }
  61. }
  62. .tweet:hover {
  63. background: #e4f1f7;
  64. }
  65. }