main.css 1.7 KB

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