123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486 |
- @import url("https://fonts.googleapis.com/css2?family=Bungee+Tint&display=swap");
- .disabled {
- display: none;
- }
- html,
- body {
- background-color: black;
- color: white;
- width: 100vw;
- height: 100vh;
- margin: 0;
- }
- .navbar {
- width: 100vw;
- height: 80px;
- display: flex;
- flex-direction: row;
- align-items: center;
- overflow: hidden;
- gap: 10px;
- background-color: #2b2b2b;
- }
- .hidden {
- display: none;
- }
- @media only screen and (max-width: 750px) {
- .navbar {
- width: 100vw;
- height: fit-content;
-
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 10px;
-
- background-color: #2b2b2b;
- }
- .navbar-spacer {
- height: 0px !important;
- width: 30px;
- }
- .video-video {
- padding: 0px;
- width: 100vw !important;
- }
- .video-container {
- margin: 0 !important;
- padding: 0px !important;
- }
- .comment-textarea {
- width: 80vw;
- }
- .navbar-buttons {
- position: inherit !important;
- display: flex !important;
- flex-direction: column !important;
- gap: 5px !important;
- }
- .video-actions {
- display: flex;
- flex-direction: column !important;
- gap: 10px;
- }
- .subscribe {
- border-radius: 100%;
- border: solid brown 2px;
- font-size: 18px;
- height: 40px !important;
- }
- .user-info {
- display: flex !important;
- flex-direction: column !important;
- gap: 10px !important;
- }
- }
- .navbar-spacer {
- height: 50px;
- width: 30px;
- }
- .navbar-img {
- height: 50px;
- }
- .navbar-img-anchor {
- z-index: 2;
- }
- .navbar-img:hover {
- cursor: pointer;
- }
- .video {
- color: orange;
- text-decoration: none;
- }
- .video-video {
- color: orange;
- height: 60vh;
- }
- .video-container {
- padding: 10px;
- display: flex;
- }
- .video-info {
- padding: 10px;
- font-family: cursive;
- }
- .video-actions {
- display: flex;
- flex-direction: row;
- gap: 10px;
- }
- .video-description {
- background-color: #2b2b2b;
- padding: 10px;
- }
- .comments {
- padding: 10px;
- }
- .like {
- background-color: #2b2b2b;
- border-radius: 20px;
- border: none;
- color: white;
- text-align: right;
- display: flex;
- align-items: center;
- flex-direction: row;
- }
- .like:hover {
- cursor: pointer;
- background-color: #303030;
- }
- .dislike {
- background-color: #2b2b2b;
- border-radius: 20px;
- border: none;
- color: white;
- text-align: right;
- display: flex;
- align-items: center;
- flex-direction: row;
- }
- .dislike:hover {
- cursor: pointer;
- background-color: #303030;
- }
- .comment-span {
- display: flex;
- flex-direction: row;
- gap: 10px;
- align-items: center;
- }
- .clickable-user {
- color: white;
- text-decoration: double;
- }
- .clickable-user:hover {
- cursor: pointer;
- color: orange;
- }
- .login {
- padding: 3px;
- background-color: orange;
- color: black;
- border-radius: 5px;
- border: none;
- font-size: 25px;
- font-family: cursive;
- text-align: right;
- }
- .login:hover {
- cursor: pointer;
- }
- .user-info {
- padding: 20px;
- background: orange;
- display: flex;
- flex-direction: row;
- gap: 10px;
- font-family: cursive;
- align-items: center;
- justify-content: center;
- }
- .user-pfp {
- width: 200px;
- height: 200px;
- border-radius: 100%;
- border: 4px solid black;
- }
- .user-info-name {
- font-family: "Bungee Tint", sans-serif;
- font-weight: 400;
- font-style: normal;
- }
- .video-uploader {
- color: brown;
- font-family: cursive;
- user-select: none;
- text-decoration: none;
- margin-block-start: 1em;
- }
- .video-uploader:hover {
- color: purple;
- cursor: pointer;
- text-decoration: overline;
- }
- .thumbnail {
- width: 300px;
- height: 200px;
- }
- .thumbnail:hover {
- cursor: pointer;
- filter: saturate(300%);
- }
- .video-info-container {
- display: flex;
- flex-direction: column;
- line-height: 0px;
- }
- .video-title {
- user-select: none;
- }
- .video-title:hover {
- cursor: pointer;
- filter: saturate(300%);
- }
- .videos {
- display: grid;
- column-gap: 10px;
- row-gap: 50px;
- grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
- padding: 10px;
- }
- .no-videos {
- text-align: center;
- color: cyan;
- text-decoration: underline;
- font-family: sans-serif;
- font-weight: 100;
- }
- .video-author {
- color: white;
- text-decoration: none;
- }
- .video-author:hover {
- color: purple;
- text-decoration: overline;
- cursor: pointer;
- }
- .anchor {
- color: white;
- text-decoration: none;
- }
- .spacer {
- height: 100px;
- }
- .footer {
- background-color: orange;
- color: black;
- padding: 20px;
- }
- .footer a {
- color: black;
- }
- .footer a:hover {
- color: white;
- cursor: pointer;
- text-decoration: overline;
- }
- .john-pork-container {
- z-index: 10000 !important;
- position:absolute;
- width: 100vw;
- height: 100vh;
- user-select: none;
- }
- .sunset-container {
- z-index: 50000 !important;
- position:absolute;
- width: 100vw;
- height: 100vh;
- user-select: none;
- }
- .john-pork {
- position: absolute;
- width: 100vw;
- height: 100vh;
- }
- .john-pork-image {
- user-select: none;
- width: 100vw;
- height: 100vh;
- }
- .john-pork-map {
- width: 100vw;
- height: 100vh;
- }
- .decline {
- cursor: pointer;
- border-radius: 100%;
- position: absolute;
- top: 72%;
- left: 14.1%;
- width: 30.2%;
- height: 17%;
- }
- .accept {
- cursor: pointer;
- border-radius: 100%;
- position: absolute;
- top: 72.5%;
- left: 63%;
- width: 29.4%;
- height: 16.5%;
- }
- .john-pork-call {
- width: 100vw;
- height: 100vh;
- user-select: none;
- }
- .span {
- display: flex;
- flex-direction: row;
- gap: 5px;
- align-items: center;
- }
- .subscribe {
- border-radius: 100%;
- border: solid brown 2px;
- font-size: 18px;
- }
- .description-dialog {
- border: 2px solid orange;
- border-radius: 10px;
- padding: 10px;
- background-color: black;
- color: orange;
- }
- .close {
- border-radius: 5px;
- padding: 5px;
- background-color: orange;
- color: black;
- font-family: cursive;
- }
- .close:hover {
- cursor: pointer;
- background-color: purple;
- }
- .description-click {
- text-decoration: underline;
- }
- .description-click:hover {
- color: grey;
- cursor: pointer;
- }
- .edit-profile {
- border: 2px black solid;
- border-radius: 50px;
- color: orange;
- font-family: cursive;
- font-size: 15px;
- background-color: purple;
- }
- .edit-profile:hover {
- cursor: pointer;
- }
- .navbar-buttons {
- position: absolute;
- width: 100vw;
-
- display: flex;
- align-items: center;
- justify-content: end;
- flex-direction: row;
- gap: 5px;
- }
- .searchbar-container {
- z-index: 2;
- }
- .searchbar {
- background-color: black;
- color: orange;
- font-family: 'Times New Roman', Times, serif;
- font-size: 24px;
- border: none;
- border-radius: 30px;
- padding: 10px;
- }
- .search-videos {
- padding: 10px;
- display: flex;
- flex-direction: column;
- gap: 15px;
- }
- .search-video {
- display: flex;
- flex-direction: row;
- gap: 15px;
- }
- .countdown {
- color: black;
- background-color: white;
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 20px;
- font-size: 30px;
- text-align: center;
- }
|