12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- #main {
- margin: 2rem 1% 5%;
- }
- #footer {
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
-
- height: 1px; /* wtf how */
- padding: 5px 5px 2rem !important;
- }
- #likes_icon:hover {
- color: hsl(348, 100%, 61%) !important;
- cursor: pointer;
- }
- #notifications {
- position: fixed;
- top: 50px;
- right: 10px;
-
- max-width: 90%;
- z-index: 30;
- }
- #video_info {
- display: flex;
- justify-content: space-between;
- }
- #delimiter {
- margin-top: 0;
- margin-bottom: 0;
- }
- #upload_date {
- margin-bottom: 10px;
- }
- #tags {
- padding-top: 10px;
- margin-bottom: 0px;
- }
- #change_avatar_dropdown {
- padding-top: 3px;
- }
- .liked {
- color: hsl(348, 100%, 61%) !important;
- }
- .centered {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- .tag:hover {
- background-color: hsl(0, 0%, 100%) !important;
- }
- .wider {
- width: 100% !important;
- }
|