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.

158 lines
2.4 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. // Featherlight
  8. @import "node_modules/featherlight/src/featherlight";
  9. .team {
  10. display: flex;
  11. align-items: center;
  12. .team-icon {
  13. display: inline-block;
  14. width: 40px;
  15. height: 40px;
  16. border-radius: 20px;
  17. margin-right: 10px;
  18. }
  19. .team-name {
  20. font-weight: bold;
  21. }
  22. }
  23. .profile {
  24. img {
  25. width: 40px;
  26. height: 40px;
  27. border-radius: 20px;
  28. border-width: 5px;
  29. border-style: solid;
  30. }
  31. span {
  32. }
  33. }
  34. .player-list {
  35. ul {
  36. list-style-type: none;
  37. margin: 0;
  38. padding: 0;
  39. margin-bottom: 1em;
  40. }
  41. li {
  42. margin: 0;
  43. padding: 4px 0;
  44. }
  45. }
  46. .tweet-queue {
  47. .tweet {
  48. border-bottom: 1px #ccc solid;
  49. cursor:pointer;
  50. .mission {
  51. font-weight: bold;
  52. margin-top: 3px;
  53. text-align: right;
  54. }
  55. .text {
  56. margin-top: 6px;
  57. font-size: 10px;
  58. line-height: 12px;
  59. max-height: 36px;
  60. overflow: hidden;
  61. white-space: pre-wrap;
  62. }
  63. }
  64. .tweet:hover {
  65. background: #e4f1f7;
  66. }
  67. }
  68. .panel-body.tweet-queue {
  69. padding: 8px;
  70. }
  71. .scorecard {
  72. .panel-heading {
  73. display: flex;
  74. .team {
  75. flex: 1 0;
  76. }
  77. }
  78. .tweet {
  79. .text {
  80. white-space: pre-wrap;
  81. }
  82. img {
  83. max-width: 100%;
  84. }
  85. }
  86. }
  87. .multi-photo {
  88. overflow: hidden;
  89. border-radius: 6px;
  90. .photo {
  91. position: relative;
  92. overflow: hidden;
  93. float: left;
  94. cursor: pointer;
  95. /* This positions and sizes the image (background-image) within the grid container */
  96. background-size: cover;
  97. background-position: 50% 50%;
  98. /* for multi-photo posts with 4 or more photos, use this */
  99. width: 50%;
  100. height: 240px;
  101. img {
  102. /* hide the img tag because the image is shown by the background image */
  103. display: none;
  104. }
  105. }
  106. }
  107. .multi-photo-clear {
  108. clear: both;
  109. }
  110. .multi-photo.photos-1 .photo {
  111. width: 100%;
  112. height: 400px;
  113. }
  114. /* 2-up multi-photos use this layout */
  115. .multi-photo.photos-2 .photo {
  116. width: 50%;
  117. height: 300px;
  118. }
  119. /* 3-up multi-photos use this layout */
  120. .multi-photo.photos-3 .photo:nth-child(1) {
  121. width: 65%;
  122. height: 400px;
  123. }
  124. .multi-photo.photos-3 .photo:nth-child(2),
  125. .multi-photo.photos-3 .photo:nth-child(3) {
  126. width: 35%;
  127. height: 200px;
  128. }