main.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. @font-face {
  2. font-family: "Kenyan Coffee";
  3. src: url("../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{font-family:inherit;}
  17. #logo {
  18. position: absolute;
  19. top: 20px;
  20. left: 20px
  21. }
  22. #playerPlaceholder {
  23. width: 640px;
  24. height: 422px;
  25. border: dashed lightgray;
  26. border-radius: 5%;
  27. padding-top: 192px;
  28. }
  29. #closePlayer {
  30. font-size: 18pt;
  31. color: black;
  32. }
  33. .searchResultChannel, .videoListCardChannel {
  34. font-style: italic;
  35. }
  36. .searchResultDescription, .videoListCardDescription {
  37. font-size: small;
  38. }
  39. .searchResult {
  40. cursor: pointer;
  41. }
  42. .searchResult, .videoListCard {
  43. height: 126px;
  44. }
  45. .searchResultTextContainer, .videoListCardTextContainer {
  46. height: 101px;
  47. overflow: hidden;
  48. text-overflow: ellipsis;
  49. }
  50. .absoluteCenter {
  51. position: absolute;
  52. top:0;
  53. bottom: 0;
  54. left: 0;
  55. right: 0;
  56. margin: auto;
  57. }
  58. .footer {
  59. position: fixed;
  60. left: 0;
  61. bottom: 0;
  62. width: 100%;
  63. text-align: center;
  64. }
  65. .footer a {
  66. color: gray;
  67. font-size: small;
  68. }
  69. .videoListCardMoveUp {
  70. margin-top: 21px;
  71. margin-bottom: 11px
  72. }
  73. .videoListCardMoveUp, .videoListCardMoveDown {
  74. text-align: center;
  75. font-size: small;
  76. width: 25px;
  77. height: 25px;
  78. border-radius: 50%;
  79. border: 1px solid #6c757d;
  80. color: #6c757d;
  81. cursor: pointer;
  82. }
  83. .videoListCardMoveUp:hover, .videoListCardMoveDown:hover {
  84. background-color: #6c757d;
  85. color: white;
  86. }
  87. .videoListCardMoveUp i, .videoListCardMoveDown i {
  88. margin-top: 5px
  89. }
  90. .videoListCardDelete {
  91. margin-left: -15px
  92. }
  93. .videoListCardThumbnail {
  94. margin-top: 5px;
  95. }