4
0

organizr.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586
  1. /*Preloader*/
  2. .preloader {
  3. width: 100%;
  4. height: 100%;
  5. top: 0px;
  6. position: fixed;
  7. z-index: 99999;
  8. background: rgba(0, 0, 0, 0.88);
  9. }
  10. .preloader .cssload-speeding-wheel {
  11. position: absolute;
  12. top: calc(50% - 3.5px);
  13. left: calc(50% - 3.5px);
  14. }
  15. .w-100 {
  16. width: 100%;
  17. }
  18. .iframe {
  19. width: 100%;
  20. height: calc(100vh - 60px);
  21. position: inherit;
  22. display: block;
  23. }
  24. /* Larger Images */
  25. #side-menu>li>a {
  26. padding: 10px 35px 10px 15px;
  27. display: block;
  28. }
  29. .sidebar .nav-second-level li a {
  30. padding: 14px 10px 14px 15px;
  31. }
  32. #side-menu .fa-fw {
  33. width: 30px !important;
  34. }
  35. .sttabs nav a {
  36. position: relative;
  37. display: block;
  38. overflow: hidden;
  39. text-overflow: ellipsis;
  40. white-space: nowrap;
  41. line-height: 1.5;
  42. }
  43. @media screen and (max-width: 767px) {
  44. .table-responsive {
  45. width: 100%;
  46. margin-bottom: 0;
  47. overflow-y: hidden;
  48. -ms-overflow-style: -ms-autohiding-scrollbar;
  49. border: transparent;
  50. }
  51. }
  52. .common-list .notify {
  53. position: relative;
  54. margin-top: .5px;
  55. margin-right: 9px;
  56. }
  57. .ajaxloader {
  58. width: 100%;
  59. height: 100%;
  60. top: 0px;
  61. position: absolute;
  62. z-index: 99999;
  63. background: rgba(0, 0, 0, 0.68);
  64. margin: 0 auto;
  65. border-radius: 10px;
  66. }
  67. .lock-screen {
  68. background: url(../../plugins/images/login-register.jpg) center center/cover no-repeat !important;
  69. height: 100%;
  70. position: fixed;
  71. z-index: 999999;
  72. top: 0;
  73. width: 100%;
  74. -webkit-user-select: none;
  75. /* Chrome all / Safari all */
  76. -moz-user-select: none;
  77. /* Firefox all */
  78. -ms-user-select: none;
  79. /* IE 10+ */
  80. -o-user-select: none;
  81. user-select: none;
  82. }
  83. body.stop-scrolling {
  84. height: 100%;
  85. overflow: hidden;
  86. }
  87. .tabEditorIcon i {
  88. font-size: 35px;
  89. text-align: center !important;
  90. width: 35px !important;
  91. }
  92. .tabEditorIcon img {
  93. width: 35px !important;
  94. }
  95. .asColorPicker-wrap {
  96. position: relative;
  97. display: block;
  98. width: calc(100% - 35px);
  99. }
  100. .asColorPicker-trigger {
  101. position: absolute;
  102. top: 0;
  103. right: -32px;
  104. height: 38px;
  105. width: 37px;
  106. border: 0;
  107. border-radius: 0 4px 4px 0;
  108. }
  109. .asColorPicker-trigger span {
  110. width: 100%;
  111. height: 100%;
  112. display: inline-block;
  113. border-radius: 0 4px 4px 0;
  114. }
  115. .top-left-part {
  116. width: auto;
  117. max-width: 220px;
  118. float: left;
  119. border-right: transparent;
  120. }
  121. .tabs-style-flip {
  122. max-width: 1400px;
  123. margin: 0 auto;
  124. }
  125. .elip {
  126. white-space: nowrap;
  127. text-overflow: ellipsis;
  128. overflow: hidden;
  129. display: block;
  130. }
  131. .p-5 {
  132. padding: 5px !important
  133. }
  134. .error-page {
  135. width: 100%;
  136. background: #1b1a1a;
  137. height: 100%;
  138. position: fixed;
  139. display: none;
  140. z-index: 10;
  141. }
  142. img.lazyload.tabImages {
  143. height: 120px !important;
  144. object-fit: contain;
  145. }
  146. .recent-cover {
  147. background-position: center;
  148. background-size: cover;
  149. height: 150px;
  150. width: 150px;
  151. top: 37px;
  152. position: relative;
  153. }
  154. .recent-poster {
  155. background-position: center;
  156. background-size: cover;
  157. height: 225px;
  158. width: 150px;
  159. position: relative;
  160. top: 0;
  161. left: 0;
  162. }
  163. .recent-title {
  164. position: absolute;
  165. bottom: 0px;
  166. background: rgba(31, 31, 31, 0.73);
  167. width: inherit;
  168. color: white;
  169. display: none;
  170. }
  171. .item:hover .recent-title {
  172. display: block;
  173. }
  174. .nowPlayingHover {
  175. margin-bottom: 14px;
  176. }
  177. .nowPlayingUserThumb:hover {
  178. opacity: 0;
  179. -webkit-transition: all .4s ease-in-out;
  180. transition: all .4s ease-in-out;
  181. }
  182. .tabLoaded {
  183. -webkit-filter: drop-shadow(0px 0px 5px #2cabe4);
  184. filter: drop-shadow(0px 0px 5px #2cabe4);
  185. }
  186. .user-bg {
  187. margin: -25px;
  188. height: 338px;
  189. overflow: hidden;
  190. position: relative;
  191. background-size: cover;
  192. background-position: top;
  193. background-repeat: no-repeat;
  194. }
  195. h2.m-b-0.font-medium.pull-right {
  196. -webkit-filter: drop-shadow(1px 1px 0px #1f1f1f);
  197. filter: drop-shadow(1px 1px 0px #1f1f1f);
  198. color: white;
  199. }
  200. .text-plex {
  201. color: #E5A00D;
  202. }
  203. .text-emby {
  204. color: #4CAF50;
  205. }
  206. .genre-list {
  207. position: absolute;
  208. bottom: 0;
  209. left: 0;
  210. }
  211. .mouse {
  212. cursor: pointer;
  213. }
  214. .el-element-overlay .el-card-item .el-overlay-1 img.imageSourceLeft {
  215. width: 56%;
  216. display: block;
  217. position: absolute;
  218. left: 0px;
  219. overflow: hidden;
  220. filter: contrast(309%) brightness(5%) saturate(32) grayscale(96%);
  221. }
  222. .el-element-overlay .el-card-item .el-overlay-1 img.imageSourceRight {
  223. width: 56%;
  224. display: block;
  225. position: absolute;
  226. right: 0px;
  227. overflow: hidden;
  228. filter: contrast(309%) brightness(5%) saturate(32) grayscale(96%);
  229. }
  230. img.imageSourceTop {
  231. top: -37px;
  232. left: 0px;
  233. margin: auto;
  234. display: block;
  235. z-index: -1;
  236. overflow: hidden;
  237. filter: contrast(309%) brightness(5%) saturate(32) grayscale(96%);
  238. }
  239. img.imageSourceBottom {
  240. top: -114px;
  241. left: 0px;
  242. margin: auto;
  243. display: block;
  244. z-index: -1;
  245. overflow: hidden;
  246. filter: contrast(309%) brightness(5%) saturate(32) grayscale(96%);
  247. }
  248. .recent-cover .hover-homepage-item {
  249. position: relative;
  250. top: -338px;
  251. height: 225px;
  252. }
  253. .recent-music span.elip.recent-title {
  254. position: absolute;
  255. bottom: -38px;
  256. background: rgba(31, 31, 31, 0.73);
  257. width: inherit;
  258. color: white;
  259. }
  260. .mailbox-widget .customtab li.active a, .mailbox-widget .customtab li.active, .mailbox-widget .customtab li.active a:focus {
  261. background: 0 0;
  262. color: #fff;
  263. border-color: #53e69d;
  264. }
  265. .nav-tabs.pull-right>li>a:hover {
  266. background: transparent;
  267. border-radius: 0px;
  268. }
  269. .homepageImageTitle {
  270. height: 40px;
  271. margin-top: -7px;
  272. }
  273. .grayscale {
  274. -webkit-filter: grayscale(100%);
  275. /* Safari 6.0 - 9.0 */
  276. filter: grayscale(100%);
  277. }
  278. td span.label.label-info {
  279. min-width: 80px !important;
  280. display: inline-block !important;
  281. }
  282. .inbox-center.table-responsive {
  283. max-height: 300px;
  284. overflow-y: auto;
  285. }
  286. .fc-event {
  287. border-radius: 0;
  288. border: none;
  289. cursor: pointer;
  290. font-size: 13px;
  291. margin: 1px -1px 0;
  292. padding: 5px;
  293. text-align: left;
  294. background: #2cabe3;
  295. }
  296. th.fc-list-header {
  297. text-align: left;
  298. }
  299. th.fc-list-header > .fc-list-heading-alt {
  300. margin-left: 10px;
  301. }
  302. .bg-calendar {
  303. background: transparent;
  304. color: inherit;
  305. }
  306. .fc-toolbar {
  307. margin: 0;
  308. padding: 19px 20px 11px 20px;
  309. }
  310. .fc-unthemed .fc-today {
  311. color: inherit !important;
  312. }
  313. @media (max-width: 767px) {
  314. i.ti-close.visible-xs {
  315. display: inline !important;
  316. }
  317. }
  318. .loop-animation {
  319. animation-iteration-count: infinite;
  320. -webkit-animation-iteration-count: infinite;
  321. -moz-animation-iteration-count: infinite;
  322. -o-animation-iteration-count: infinite;
  323. }
  324. @media (max-width: 767px) {
  325. img.lazyload.resultImages {
  326. height: 300px !important;
  327. object-fit: contain;
  328. width: 200px !important;
  329. margin: auto;
  330. }
  331. }
  332. @media (min-width: 768px) {
  333. img.lazyload.resultImages {
  334. height: 300px !important;
  335. object-fit: cover;
  336. width: 200px !important;
  337. margin: auto;
  338. }
  339. }
  340. .outside-request-div {
  341. position: absolute;
  342. right: 0;
  343. overflow: hidden;
  344. width: 32px;
  345. height: 32px;
  346. }
  347. .inside-request-div {
  348. top: -16px;
  349. right: -16px;
  350. padding: 0;
  351. width: 100%;
  352. height: 100%;
  353. -webkit-transform: rotate(45deg);
  354. transform: rotate(45deg);
  355. position: absolute;
  356. box-shadow: 0 0 4px rgba(0, 0, 0, .6);
  357. line-height: 24px;
  358. opacity: 1;
  359. -webkit-transition: all .2s;
  360. transition: all .2s;
  361. }
  362. .inside-over-request-div {
  363. top: -28px;
  364. right: -25px;
  365. padding: 0;
  366. width: 50px;
  367. height: 50px;
  368. -webkit-transform: rotate(45deg);
  369. transform: rotate(45deg);
  370. position: absolute;
  371. box-shadow: 0 0 4px rgba(0, 0, 0, .6);
  372. line-height: 24px;
  373. opacity: 1;
  374. -webkit-transition: all .2s;
  375. transition: all .2s;
  376. }
  377. .unapproved-request-div {
  378. background-color: #cc7b19;
  379. }
  380. .hover-homepage-item:hover {
  381. background: radial-gradient(farthest-corner at 50% 50%, rgba(50, 50, 50, .5) 50%, #323232 100%);
  382. opacity: 1;
  383. transition: linear .5s;
  384. }
  385. .hover-homepage-item {
  386. width: 100%;
  387. height: 100%;
  388. opacity: 0;
  389. }
  390. input#inviteCodeInput {
  391. font-size: 400%;
  392. height: 100%;
  393. }
  394. .bg-plex {
  395. background: #E5A00D;
  396. }
  397. .bg-emby {
  398. background: #4CAF50;
  399. }
  400. .bg-sab {
  401. background: #ffb300;
  402. }
  403. .bg-deluge {
  404. background: #425570;
  405. }
  406. .bg-nzbget {
  407. background: #3e8c25;
  408. }
  409. .bg-transmission {
  410. background: #950000;
  411. }
  412. .bg-qbit {
  413. background: #2f67ba;
  414. }
  415. .request-result-item {
  416. width: 230px;
  417. }
  418. .customPoster {
  419. margin: 50px auto;
  420. text-align: center;
  421. position: absolute;
  422. top: 0;
  423. left: 0;
  424. width: 200px;
  425. }
  426. .customPoster a {
  427. text-decoration: none;
  428. -webkit-transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
  429. -moz-transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
  430. -ms-transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
  431. -o-transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
  432. transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
  433. -webkit-transition: all 0.5s;
  434. -moz-transition: all 0.5s;
  435. transition: all 0.5s;
  436. display: inline-block;
  437. text-align: center;
  438. text-transform: uppercase;
  439. font-size: 35px;
  440. font-weight: 700;
  441. font-family: inherit;
  442. line-height: 0.8;
  443. color: #707cd2;
  444. text-shadow: 0 -1px 15px rgba(0, 0, 0, 0.9), 0 1px 0 #7d7d7d, 0 3px 0 #828282, 0 5px 0 #6c6c6c, 0 7px 0 #727272, 0 9px 0 #939393, 0 6px 50px rgb(27, 26, 26);
  445. width: 200px;
  446. max-width: 200px;
  447. }
  448. .customPoster a:first-line {
  449. font-size: 0.8em;
  450. }
  451. .el-overlay-1:hover .customPoster a {
  452. -webkit-transform: perspective(8em) rotateX(11deg) scale(1.2);
  453. -moz-transform: perspective(8em) rotateX(11deg) scale(1.2);
  454. -ms-transform: perspective(8em) rotateX(11deg) scale(1.2);
  455. -o-transform: perspective(8em) rotateX(11deg) scale(1.2);
  456. transform: perspective(8em) rotateX(11deg) scale(1.2);
  457. text-shadow: 0 -1px 15px black, 0 1px 0 #7f6303, 0 2px 0 #846703, 0 0px 0 #896b03, 0 1px 0 #8e6f03, 0 2px 0 #937203, 0 2px 30px rgba(252, 223, 92, 0.6);
  458. }
  459. .homepage-drag {
  460. background-size: contain;
  461. background-position: right;
  462. height: 60px;
  463. background-repeat: no-repeat;
  464. background-origin: content-box;
  465. border-radius: 10px;
  466. }
  467. .homepage-number {
  468. float: left;
  469. width: 36px !important;
  470. text-align: center;
  471. vertical-align: middle;
  472. height: 36px;
  473. border-radius: 20px;
  474. margin-top: 7px;
  475. padding: 11px;
  476. }
  477. span.homepage-text {
  478. margin-top: 16px;
  479. display: inline-block;
  480. }
  481. .faded {
  482. opacity: .5;
  483. }
  484. .qr-code {
  485. display: block;
  486. width: 100%;
  487. height: 380px;
  488. background-size: contain;
  489. margin: auto;
  490. background-repeat: no-repeat;
  491. }
  492. .btn-link, a {
  493. color: #2cabe3;
  494. text-decoration: none;
  495. }
  496. @media (pointer: coarse) {
  497. #side-menu > li > a:hover,
  498. #side-menu > li > a:focus {
  499. background: transparent;
  500. }
  501. }