style.css 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486
  1. @import url("https://fonts.googleapis.com/css2?family=Bungee+Tint&display=swap");
  2. .disabled {
  3. display: none;
  4. }
  5. html,
  6. body {
  7. background-color: black;
  8. color: white;
  9. width: 100vw;
  10. height: 100vh;
  11. margin: 0;
  12. }
  13. .navbar {
  14. width: 100vw;
  15. height: 80px;
  16. display: flex;
  17. flex-direction: row;
  18. align-items: center;
  19. overflow: hidden;
  20. gap: 10px;
  21. background-color: #2b2b2b;
  22. }
  23. .hidden {
  24. display: none;
  25. }
  26. @media only screen and (max-width: 750px) {
  27. .navbar {
  28. width: 100vw;
  29. height: fit-content;
  30. display: flex;
  31. flex-direction: column;
  32. align-items: center;
  33. gap: 10px;
  34. background-color: #2b2b2b;
  35. }
  36. .navbar-spacer {
  37. height: 0px !important;
  38. width: 30px;
  39. }
  40. .video-video {
  41. padding: 0px;
  42. width: 100vw !important;
  43. }
  44. .video-container {
  45. margin: 0 !important;
  46. padding: 0px !important;
  47. }
  48. .comment-textarea {
  49. width: 80vw;
  50. }
  51. .navbar-buttons {
  52. position: inherit !important;
  53. display: flex !important;
  54. flex-direction: column !important;
  55. gap: 5px !important;
  56. }
  57. .video-actions {
  58. display: flex;
  59. flex-direction: column !important;
  60. gap: 10px;
  61. }
  62. .subscribe {
  63. border-radius: 100%;
  64. border: solid brown 2px;
  65. font-size: 18px;
  66. height: 40px !important;
  67. }
  68. .user-info {
  69. display: flex !important;
  70. flex-direction: column !important;
  71. gap: 10px !important;
  72. }
  73. }
  74. .navbar-spacer {
  75. height: 50px;
  76. width: 30px;
  77. }
  78. .navbar-img {
  79. height: 50px;
  80. }
  81. .navbar-img-anchor {
  82. z-index: 2;
  83. }
  84. .navbar-img:hover {
  85. cursor: pointer;
  86. }
  87. .video {
  88. color: orange;
  89. text-decoration: none;
  90. }
  91. .video-video {
  92. color: orange;
  93. height: 60vh;
  94. }
  95. .video-container {
  96. padding: 10px;
  97. display: flex;
  98. }
  99. .video-info {
  100. padding: 10px;
  101. font-family: cursive;
  102. }
  103. .video-actions {
  104. display: flex;
  105. flex-direction: row;
  106. gap: 10px;
  107. }
  108. .video-description {
  109. background-color: #2b2b2b;
  110. padding: 10px;
  111. }
  112. .comments {
  113. padding: 10px;
  114. }
  115. .like {
  116. background-color: #2b2b2b;
  117. border-radius: 20px;
  118. border: none;
  119. color: white;
  120. text-align: right;
  121. display: flex;
  122. align-items: center;
  123. flex-direction: row;
  124. }
  125. .like:hover {
  126. cursor: pointer;
  127. background-color: #303030;
  128. }
  129. .dislike {
  130. background-color: #2b2b2b;
  131. border-radius: 20px;
  132. border: none;
  133. color: white;
  134. text-align: right;
  135. display: flex;
  136. align-items: center;
  137. flex-direction: row;
  138. }
  139. .dislike:hover {
  140. cursor: pointer;
  141. background-color: #303030;
  142. }
  143. .comment-span {
  144. display: flex;
  145. flex-direction: row;
  146. gap: 10px;
  147. align-items: center;
  148. }
  149. .clickable-user {
  150. color: white;
  151. text-decoration: double;
  152. }
  153. .clickable-user:hover {
  154. cursor: pointer;
  155. color: orange;
  156. }
  157. .login {
  158. padding: 3px;
  159. background-color: orange;
  160. color: black;
  161. border-radius: 5px;
  162. border: none;
  163. font-size: 25px;
  164. font-family: cursive;
  165. text-align: right;
  166. }
  167. .login:hover {
  168. cursor: pointer;
  169. }
  170. .user-info {
  171. padding: 20px;
  172. background: orange;
  173. display: flex;
  174. flex-direction: row;
  175. gap: 10px;
  176. font-family: cursive;
  177. align-items: center;
  178. justify-content: center;
  179. }
  180. .user-pfp {
  181. width: 200px;
  182. height: 200px;
  183. border-radius: 100%;
  184. border: 4px solid black;
  185. }
  186. .user-info-name {
  187. font-family: "Bungee Tint", sans-serif;
  188. font-weight: 400;
  189. font-style: normal;
  190. }
  191. .video-uploader {
  192. color: brown;
  193. font-family: cursive;
  194. user-select: none;
  195. text-decoration: none;
  196. margin-block-start: 1em;
  197. }
  198. .video-uploader:hover {
  199. color: purple;
  200. cursor: pointer;
  201. text-decoration: overline;
  202. }
  203. .thumbnail {
  204. width: 300px;
  205. height: 200px;
  206. }
  207. .thumbnail:hover {
  208. cursor: pointer;
  209. filter: saturate(300%);
  210. }
  211. .video-info-container {
  212. display: flex;
  213. flex-direction: column;
  214. line-height: 0px;
  215. }
  216. .video-title {
  217. user-select: none;
  218. }
  219. .video-title:hover {
  220. cursor: pointer;
  221. filter: saturate(300%);
  222. }
  223. .videos {
  224. display: grid;
  225. column-gap: 10px;
  226. row-gap: 50px;
  227. grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  228. padding: 10px;
  229. }
  230. .no-videos {
  231. text-align: center;
  232. color: cyan;
  233. text-decoration: underline;
  234. font-family: sans-serif;
  235. font-weight: 100;
  236. }
  237. .video-author {
  238. color: white;
  239. text-decoration: none;
  240. }
  241. .video-author:hover {
  242. color: purple;
  243. text-decoration: overline;
  244. cursor: pointer;
  245. }
  246. .anchor {
  247. color: white;
  248. text-decoration: none;
  249. }
  250. .spacer {
  251. height: 100px;
  252. }
  253. .footer {
  254. background-color: orange;
  255. color: black;
  256. padding: 20px;
  257. }
  258. .footer a {
  259. color: black;
  260. }
  261. .footer a:hover {
  262. color: white;
  263. cursor: pointer;
  264. text-decoration: overline;
  265. }
  266. .john-pork-container {
  267. z-index: 10000 !important;
  268. position:absolute;
  269. width: 100vw;
  270. height: 100vh;
  271. user-select: none;
  272. }
  273. .sunset-container {
  274. z-index: 50000 !important;
  275. position:absolute;
  276. width: 100vw;
  277. height: 100vh;
  278. user-select: none;
  279. }
  280. .john-pork {
  281. position: absolute;
  282. width: 100vw;
  283. height: 100vh;
  284. }
  285. .john-pork-image {
  286. user-select: none;
  287. width: 100vw;
  288. height: 100vh;
  289. }
  290. .john-pork-map {
  291. width: 100vw;
  292. height: 100vh;
  293. }
  294. .decline {
  295. cursor: pointer;
  296. border-radius: 100%;
  297. position: absolute;
  298. top: 72%;
  299. left: 14.1%;
  300. width: 30.2%;
  301. height: 17%;
  302. }
  303. .accept {
  304. cursor: pointer;
  305. border-radius: 100%;
  306. position: absolute;
  307. top: 72.5%;
  308. left: 63%;
  309. width: 29.4%;
  310. height: 16.5%;
  311. }
  312. .john-pork-call {
  313. width: 100vw;
  314. height: 100vh;
  315. user-select: none;
  316. }
  317. .span {
  318. display: flex;
  319. flex-direction: row;
  320. gap: 5px;
  321. align-items: center;
  322. }
  323. .subscribe {
  324. border-radius: 100%;
  325. border: solid brown 2px;
  326. font-size: 18px;
  327. }
  328. .description-dialog {
  329. border: 2px solid orange;
  330. border-radius: 10px;
  331. padding: 10px;
  332. background-color: black;
  333. color: orange;
  334. }
  335. .close {
  336. border-radius: 5px;
  337. padding: 5px;
  338. background-color: orange;
  339. color: black;
  340. font-family: cursive;
  341. }
  342. .close:hover {
  343. cursor: pointer;
  344. background-color: purple;
  345. }
  346. .description-click {
  347. text-decoration: underline;
  348. }
  349. .description-click:hover {
  350. color: grey;
  351. cursor: pointer;
  352. }
  353. .edit-profile {
  354. border: 2px black solid;
  355. border-radius: 50px;
  356. color: orange;
  357. font-family: cursive;
  358. font-size: 15px;
  359. background-color: purple;
  360. }
  361. .edit-profile:hover {
  362. cursor: pointer;
  363. }
  364. .navbar-buttons {
  365. position: absolute;
  366. width: 100vw;
  367. display: flex;
  368. align-items: center;
  369. justify-content: end;
  370. flex-direction: row;
  371. gap: 5px;
  372. }
  373. .searchbar-container {
  374. z-index: 2;
  375. }
  376. .searchbar {
  377. background-color: black;
  378. color: orange;
  379. font-family: 'Times New Roman', Times, serif;
  380. font-size: 24px;
  381. border: none;
  382. border-radius: 30px;
  383. padding: 10px;
  384. }
  385. .search-videos {
  386. padding: 10px;
  387. display: flex;
  388. flex-direction: column;
  389. gap: 15px;
  390. }
  391. .search-video {
  392. display: flex;
  393. flex-direction: row;
  394. gap: 15px;
  395. }
  396. .countdown {
  397. color: black;
  398. background-color: white;
  399. display: flex;
  400. align-items: center;
  401. justify-content: center;
  402. padding: 20px;
  403. font-size: 30px;
  404. text-align: center;
  405. }