style.css 947 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. #main {
  2. margin: 2rem 1% 5%;
  3. }
  4. #footer {
  5. position: fixed;
  6. left: 0;
  7. right: 0;
  8. bottom: 0;
  9. height: 1px; /* wtf how */
  10. padding: 5px 5px 2rem !important;
  11. }
  12. #likes_icon:hover {
  13. color: hsl(348, 100%, 61%) !important;
  14. cursor: pointer;
  15. }
  16. #notifications {
  17. position: fixed;
  18. top: 50px;
  19. right: 10px;
  20. max-width: 90%;
  21. z-index: 30;
  22. }
  23. #video_info {
  24. display: flex;
  25. justify-content: space-between;
  26. }
  27. #delimiter {
  28. margin-top: 0;
  29. margin-bottom: 0;
  30. }
  31. #upload_date {
  32. margin-bottom: 10px;
  33. }
  34. #tags {
  35. padding-top: 10px;
  36. margin-bottom: 0px;
  37. }
  38. #change_avatar_dropdown {
  39. padding-top: 3px;
  40. }
  41. .liked {
  42. color: hsl(348, 100%, 61%) !important;
  43. }
  44. .centered {
  45. position: absolute;
  46. top: 50%;
  47. left: 50%;
  48. transform: translate(-50%, -50%);
  49. }
  50. .tag:hover {
  51. background-color: hsl(0, 0%, 100%) !important;
  52. }
  53. .wider {
  54. width: 100% !important;
  55. }