main.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. @font-face {
  2. font-family: "Kenyan Coffee";
  3. src: url("../webfonts/kenyc.ttf");
  4. }
  5. body {
  6. font-family: "Open Sans", sans-serif;
  7. }
  8. input, select, textarea, button{font-family:inherit;}
  9. .searchResultChannel, .videoListCardChannel {
  10. font-style: italic;
  11. }
  12. .searchResultDescription, .videoListCardDescription {
  13. font-size: small;
  14. }
  15. .searchResult {
  16. cursor: pointer;
  17. }
  18. .searchResult, .videoListCard {
  19. height: 126px;
  20. }
  21. .searchResultTextContainer, .videoListCardTextContainer {
  22. height: 101px;
  23. overflow: hidden;
  24. text-overflow: ellipsis;
  25. }
  26. .pageCenter {
  27. position: absolute;
  28. top:0;
  29. bottom: 0;
  30. left: 0;
  31. right: 0;
  32. margin: auto;
  33. }
  34. .footer {
  35. position: fixed;
  36. left: 0;
  37. bottom: 0;
  38. width: 100%;
  39. text-align: center;
  40. }
  41. .footer a {
  42. color: gray;
  43. font-size: small;
  44. }
  45. .videoListCardMoveUp {
  46. margin-top: 21px;
  47. margin-bottom: 11px
  48. }
  49. .videoListCardMoveUp, .videoListCardMoveDown {
  50. text-align: center;
  51. font-size: small;
  52. width: 25px;
  53. height: 25px;
  54. border-radius: 50%;
  55. border: 1px solid #6c757d;
  56. color: #6c757d;
  57. cursor: pointer;
  58. }
  59. .videoListCardMoveUp:hover, .videoListCardMoveDown:hover {
  60. background-color: #6c757d;
  61. color: white;
  62. }
  63. .videoListCardMoveUp i, .videoListCardMoveDown i {
  64. margin-top: 5px
  65. }
  66. .videoListCardDelete {
  67. margin-left: -15px
  68. }
  69. .videoListCardThumbnail {
  70. margin-top: 5px;
  71. }