main.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. @font-face {
  2. font-family: "Kenyan Coffee";
  3. src: url("drive/local/files/projects/programming/chu-chube/frontend/chuchufe/src/webfonts/kenyc.ttf");
  4. }
  5. @media (min-width: 1500px) {
  6. .container, .container-sm, .container-md, .container-lg, .container-xl {
  7. max-width: 1440px;
  8. }
  9. }
  10. .container {
  11. margin-top: 80px
  12. }
  13. body {
  14. font-family: "Open Sans", sans-serif;
  15. }
  16. input, select, textarea, button {
  17. font-family: inherit;
  18. }
  19. #logo {
  20. position: absolute;
  21. top: 20px;
  22. left: 20px
  23. }
  24. #playerPlaceholder {
  25. width: 640px;
  26. height: 422px;
  27. border: dashed lightgray;
  28. border-radius: 5%;
  29. padding-top: 192px;
  30. }
  31. #closePlayer {
  32. font-size: 18pt;
  33. color: black;
  34. }
  35. .searchResultChannel, .videoListCardChannel {
  36. font-style: italic;
  37. }
  38. .searchResultDescription, .videoListCardDescription {
  39. font-size: small;
  40. }
  41. .searchResult {
  42. cursor: pointer;
  43. }
  44. .searchResult, .videoListCard {
  45. height: 126px;
  46. }
  47. .searchResultTextContainer, .videoListCardTextContainer {
  48. height: 101px;
  49. overflow: hidden;
  50. text-overflow: ellipsis;
  51. }
  52. .thumbnailContainer {
  53. position: relative;
  54. width: 120px;
  55. height: 90px;
  56. }
  57. .thumbnailImage {
  58. position: absolute;
  59. top: 0;
  60. bottom: 0;
  61. right: 0;
  62. left: 0
  63. }
  64. .thumbnailPlaylistOverlay {
  65. position: absolute;
  66. top: 0;
  67. bottom: 0;
  68. right: 0;
  69. width: 50px;
  70. background: rgba(0,0,0, 0.8);
  71. text-align: center;
  72. }
  73. .thumbnailPlaylistOverlay .fa {
  74. color: #eeeeee;
  75. padding-top: 38px;
  76. }
  77. .absoluteCenter {
  78. position: absolute;
  79. top: 0;
  80. bottom: 0;
  81. left: 0;
  82. right: 0;
  83. margin: auto;
  84. }
  85. .footer {
  86. position: fixed;
  87. left: 0;
  88. bottom: 0;
  89. width: 100%;
  90. text-align: center;
  91. z-index: -1;
  92. }
  93. .footer, .footer a {
  94. color: gray;
  95. font-size: small;
  96. }
  97. .videoListCardMoveUp {
  98. margin-top: 21px;
  99. margin-bottom: 11px
  100. }
  101. .videoListCardMoveUp, .videoListCardMoveDown {
  102. text-align: center;
  103. font-size: small;
  104. width: 25px;
  105. height: 25px;
  106. border-radius: 50%;
  107. border: 1px solid #6c757d;
  108. color: #6c757d;
  109. cursor: pointer;
  110. }
  111. .videoListCardMoveUp:hover, .videoListCardMoveDown:hover {
  112. background-color: #6c757d;
  113. color: white;
  114. }
  115. .videoListCardMoveUp i, .videoListCardMoveDown i {
  116. margin-top: 5px
  117. }
  118. .videoListCardDelete {
  119. margin-left: -15px
  120. }
  121. .videoListCardThumbnail {
  122. margin-top: 5px;
  123. }