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.

152 lines
2.3 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. .photo {
  89. position: relative;
  90. overflow: hidden;
  91. float: left;
  92. cursor: pointer;
  93. /* This positions and sizes the image (background-image) within the grid container */
  94. background-size: cover;
  95. background-position: 50% 50%;
  96. /* for multi-photo posts with 4 or more photos, use this */
  97. width: 50%;
  98. height: 240px;
  99. img {
  100. /* hide the img tag because the image is shown by the background image */
  101. display: none;
  102. }
  103. }
  104. }
  105. .multi-photo-clear {
  106. clear: both;
  107. }
  108. /* 2-up multi-photos use this layout */
  109. .multi-photo.photos-2 .photo {
  110. width: 50%;
  111. height: 300px;
  112. }
  113. /* 3-up multi-photos use this layout */
  114. .multi-photo.photos-3 .photo:nth-child(1) {
  115. width: 65%;
  116. height: 400px;
  117. }
  118. .multi-photo.photos-3 .photo:nth-child(2),
  119. .multi-photo.photos-3 .photo:nth-child(3) {
  120. width: 35%;
  121. height: 200px;
  122. }