organizr.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883
  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 - 40px);
  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. .common-list .notify {
  44. position: relative;
  45. margin-top: .5px;
  46. margin-right: 9px;
  47. }
  48. .ajaxloader {
  49. width: 100%;
  50. height: 100%;
  51. top: 0px;
  52. position: absolute;
  53. z-index: 99999;
  54. background: rgba(0, 0, 0, 0.68);
  55. margin: 0 auto;
  56. border-radius: 10px;
  57. }
  58. .lock-screen {
  59. background: url(../../plugins/images/login-register.jpg) center center/cover no-repeat !important;
  60. height: 100%;
  61. position: fixed;
  62. z-index: 999999;
  63. top: 0;
  64. width: 100%;
  65. -webkit-user-select: none;
  66. /* Chrome all / Safari all */
  67. -moz-user-select: none;
  68. /* Firefox all */
  69. -ms-user-select: none;
  70. /* IE 10+ */
  71. -o-user-select: none;
  72. user-select: none;
  73. }
  74. body.stop-scrolling {
  75. height: 100%;
  76. overflow: hidden;
  77. }
  78. .tabEditorIcon i {
  79. font-size: 35px;
  80. text-align: center !important;
  81. width: 35px !important;
  82. }
  83. .tabEditorIcon img {
  84. width: 35px !important;
  85. }
  86. .asColorPicker-wrap {
  87. position: relative;
  88. display: block;
  89. width: calc(100% - 35px);
  90. }
  91. .asColorPicker-trigger {
  92. position: absolute;
  93. top: 0;
  94. right: -32px;
  95. height: 38px;
  96. width: 37px;
  97. border: 0;
  98. border-radius: 0 4px 4px 0;
  99. }
  100. .asColorPicker-trigger span {
  101. width: 100%;
  102. height: 100%;
  103. display: inline-block;
  104. border-radius: 0 4px 4px 0;
  105. }
  106. .top-left-part {
  107. width: auto;
  108. max-width: 220px;
  109. float: left;
  110. border-right: transparent;
  111. }
  112. .tabs-style-flip {
  113. max-width: 1400px;
  114. margin: 0 auto;
  115. }
  116. .elip {
  117. white-space: nowrap;
  118. text-overflow: ellipsis;
  119. overflow: hidden;
  120. display: block;
  121. }
  122. .p-5 {
  123. padding: 5px !important
  124. }
  125. .error-page {
  126. width: 100%;
  127. background: #1b1a1a;
  128. height: 100%;
  129. position: fixed;
  130. display: none;
  131. z-index: 10;
  132. }
  133. img.lazyload.tabImages {
  134. height: 120px !important;
  135. object-fit: contain;
  136. -webkit-filter: drop-shadow(0px 0px 0px black);
  137. filter: drop-shadow(0px 0px 0px black);
  138. }
  139. .recent-cover {
  140. background-position: center;
  141. background-size: cover;
  142. height: 150px;
  143. width: 150px;
  144. top: 37px;
  145. position: relative;
  146. }
  147. .recent-poster {
  148. background-position: center;
  149. background-size: cover;
  150. height: 225px;
  151. width: 150px;
  152. position: relative;
  153. top: 0;
  154. left: 0;
  155. }
  156. .recent-title {
  157. position: absolute;
  158. bottom: 0px;
  159. background: rgba(31, 31, 31, 0.73);
  160. width: inherit;
  161. color: white;
  162. display: none;
  163. }
  164. .item:hover .recent-title {
  165. display: block;
  166. }
  167. .nowPlayingHover {
  168. margin-bottom: 14px;
  169. }
  170. .nowPlayingUserThumb:hover {
  171. opacity: 0;
  172. -webkit-transition: all .4s ease-in-out;
  173. transition: all .4s ease-in-out;
  174. }
  175. .tabLoaded {
  176. -webkit-filter: drop-shadow(0px 0px 5px #2cabe4);
  177. filter: drop-shadow(0px 0px 5px #2cabe4);
  178. }
  179. .user-bg {
  180. margin: -25px;
  181. height: 338px;
  182. overflow: hidden;
  183. position: relative;
  184. background-size: cover;
  185. background-position: top;
  186. background-repeat: no-repeat;
  187. }
  188. h2.m-b-0.font-medium.pull-right {
  189. -webkit-filter: drop-shadow(1px 1px 0px #1f1f1f);
  190. filter: drop-shadow(1px 1px 0px #1f1f1f);
  191. color: white;
  192. }
  193. .text-plex {
  194. color: #E5A00D;
  195. }
  196. .text-emby {
  197. color: #4CAF50;
  198. }
  199. .genre-list {
  200. position: absolute;
  201. bottom: 0;
  202. left: 0;
  203. }
  204. .mouse {
  205. cursor: pointer;
  206. }
  207. .el-element-overlay .el-card-item .el-overlay-1 img.imageSourceLeft {
  208. width: 56%;
  209. display: block;
  210. position: absolute;
  211. left: 0px;
  212. overflow: hidden;
  213. filter: contrast(309%) brightness(5%) saturate(32) grayscale(96%);
  214. }
  215. .el-element-overlay .el-card-item .el-overlay-1 img.imageSourceRight {
  216. width: 56%;
  217. display: block;
  218. position: absolute;
  219. right: 0px;
  220. overflow: hidden;
  221. filter: contrast(309%) brightness(5%) saturate(32) grayscale(96%);
  222. }
  223. img.imageSourceTop {
  224. top: -37px;
  225. left: 0px;
  226. margin: auto;
  227. display: block;
  228. z-index: -1;
  229. overflow: hidden;
  230. filter: contrast(309%) brightness(5%) saturate(32) grayscale(96%);
  231. }
  232. img.imageSourceBottom {
  233. top: -114px;
  234. left: 0px;
  235. margin: auto;
  236. display: block;
  237. z-index: -1;
  238. overflow: hidden;
  239. filter: contrast(309%) brightness(5%) saturate(32) grayscale(96%);
  240. }
  241. .recent-cover .hover-homepage-item {
  242. position: relative;
  243. top: -338px;
  244. height: 225px;
  245. }
  246. .recent-music span.elip.recent-title {
  247. position: absolute;
  248. bottom: -38px;
  249. background: rgba(31, 31, 31, 0.73);
  250. width: inherit;
  251. color: white;
  252. }
  253. .mailbox-widget .customtab li.active a, .mailbox-widget .customtab li.active, .mailbox-widget .customtab li.active a:focus {
  254. background: 0 0;
  255. color: #fff;
  256. border-color: #53e69d;
  257. }
  258. .nav-tabs.pull-right>li>a:hover {
  259. background: transparent;
  260. border-radius: 0px;
  261. }
  262. .homepageImageTitle {
  263. height: 40px;
  264. margin-top: -7px;
  265. }
  266. .grayscale {
  267. -webkit-filter: grayscale(100%);
  268. /* Safari 6.0 - 9.0 */
  269. filter: grayscale(100%);
  270. }
  271. td span.label.label-info {
  272. min-width: 80px !important;
  273. display: inline-block !important;
  274. }
  275. .inbox-center.table-responsive {
  276. max-height: 300px;
  277. overflow-y: auto;
  278. }
  279. .fc-event {
  280. border-radius: 0;
  281. border: none;
  282. cursor: pointer;
  283. font-size: 13px;
  284. margin: 1px -1px 0;
  285. padding: 5px;
  286. text-align: left;
  287. background: #2cabe3;
  288. }
  289. th.fc-list-header {
  290. text-align: left;
  291. }
  292. th.fc-list-header > .fc-list-heading-alt {
  293. margin-left: 10px;
  294. }
  295. .bg-calendar {
  296. background: transparent;
  297. color: inherit;
  298. }
  299. .fc-toolbar {
  300. margin: 0;
  301. padding: 19px 20px 11px 20px;
  302. }
  303. .fc-unthemed .fc-today {
  304. color: inherit !important;
  305. }
  306. .fc-popover {
  307. background-color: #1b1b1b
  308. }
  309. @media (max-width: 767px) {
  310. i.ti-close.visible-xs {
  311. display: inline !important;
  312. }
  313. img.lazyload.resultImages {
  314. height: 300px !important;
  315. object-fit: contain;
  316. width: 200px !important;
  317. margin: auto;
  318. }
  319. }
  320. @media screen and (max-width: 767px) {
  321. .table-responsive {
  322. width: 100%;
  323. margin-bottom: 0;
  324. overflow-y: hidden;
  325. -ms-overflow-style: -ms-autohiding-scrollbar;
  326. border: transparent;
  327. }
  328. .fc-day-grid-event .fc-content {
  329. white-space: nowrap;
  330. overflow: visible;
  331. }
  332. .fc-view-container .fc-view .fc-scroller {
  333. max-height: 212px !important;
  334. overflow: auto !important;
  335. }
  336. }
  337. .loop-animation {
  338. animation-iteration-count: infinite;
  339. -webkit-animation-iteration-count: infinite;
  340. -moz-animation-iteration-count: infinite;
  341. -o-animation-iteration-count: infinite;
  342. }
  343. @media (min-width: 768px) {
  344. img.lazyload.resultImages {
  345. height: 300px !important;
  346. object-fit: cover;
  347. width: 200px !important;
  348. margin: auto;
  349. }
  350. }
  351. .outside-request-div {
  352. position: absolute;
  353. right: 0;
  354. overflow: hidden;
  355. width: 32px;
  356. height: 32px;
  357. }
  358. .inside-request-div {
  359. top: -16px;
  360. right: -16px;
  361. padding: 0;
  362. width: 100%;
  363. height: 100%;
  364. -webkit-transform: rotate(45deg);
  365. transform: rotate(45deg);
  366. position: absolute;
  367. box-shadow: 0 0 4px rgba(0, 0, 0, .6);
  368. line-height: 24px;
  369. opacity: 1;
  370. -webkit-transition: all .2s;
  371. transition: all .2s;
  372. }
  373. .inside-over-request-div {
  374. top: -28px;
  375. right: -25px;
  376. padding: 0;
  377. width: 50px;
  378. height: 50px;
  379. -webkit-transform: rotate(45deg);
  380. transform: rotate(45deg);
  381. position: absolute;
  382. box-shadow: 0 0 4px rgba(0, 0, 0, .6);
  383. line-height: 24px;
  384. opacity: 1;
  385. -webkit-transition: all .2s;
  386. transition: all .2s;
  387. }
  388. .unapproved-request-div {
  389. background-color: #cc7b19;
  390. }
  391. .hover-homepage-item:hover {
  392. background: radial-gradient(farthest-corner at 50% 50%, rgba(50, 50, 50, .5) 50%, #323232 100%);
  393. opacity: 1;
  394. transition: linear .5s;
  395. }
  396. .hover-homepage-item {
  397. width: 100%;
  398. height: 100%;
  399. opacity: 0;
  400. }
  401. input#inviteCodeInput {
  402. font-size: 400%;
  403. height: 100%;
  404. }
  405. .bg-plex {
  406. background: #E5A00D;
  407. }
  408. .bg-emby {
  409. background: #4CAF50;
  410. }
  411. .bg-sab {
  412. background: #ffb300;
  413. }
  414. .bg-deluge {
  415. background: #425570;
  416. }
  417. .bg-nzbget {
  418. background: #3e8c25;
  419. }
  420. .bg-transmission {
  421. background: #950000;
  422. }
  423. .bg-qbit {
  424. background: #2f67ba;
  425. }
  426. .request-result-item {
  427. width: 230px;
  428. }
  429. .customPoster {
  430. margin: 50px auto;
  431. text-align: center;
  432. position: absolute;
  433. top: 0;
  434. left: 0;
  435. width: 200px;
  436. }
  437. .customPoster a {
  438. text-decoration: none;
  439. -webkit-transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
  440. -moz-transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
  441. -ms-transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
  442. -o-transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
  443. transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
  444. -webkit-transition: all 0.5s;
  445. -moz-transition: all 0.5s;
  446. transition: all 0.5s;
  447. display: inline-block;
  448. text-align: center;
  449. text-transform: uppercase;
  450. font-size: 35px;
  451. font-weight: 700;
  452. font-family: inherit;
  453. line-height: 0.8;
  454. color: #707cd2;
  455. 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);
  456. width: 200px;
  457. max-width: 200px;
  458. }
  459. .customPoster a:first-line {
  460. font-size: 0.8em;
  461. }
  462. .el-overlay-1:hover .customPoster a {
  463. -webkit-transform: perspective(8em) rotateX(11deg) scale(1.2);
  464. -moz-transform: perspective(8em) rotateX(11deg) scale(1.2);
  465. -ms-transform: perspective(8em) rotateX(11deg) scale(1.2);
  466. -o-transform: perspective(8em) rotateX(11deg) scale(1.2);
  467. transform: perspective(8em) rotateX(11deg) scale(1.2);
  468. 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);
  469. }
  470. .homepage-drag {
  471. background-size: contain;
  472. background-position: right;
  473. height: 60px;
  474. background-repeat: no-repeat;
  475. background-origin: content-box;
  476. border-radius: 10px;
  477. }
  478. .homepage-number {
  479. float: left;
  480. width: 36px !important;
  481. text-align: center;
  482. vertical-align: middle;
  483. height: 36px;
  484. border-radius: 20px;
  485. margin-top: 7px;
  486. padding: 11px;
  487. }
  488. span.homepage-text {
  489. margin-top: 16px;
  490. display: inline-block;
  491. }
  492. .faded {
  493. opacity: .5;
  494. }
  495. .qr-code {
  496. display: block;
  497. width: 100%;
  498. height: 380px;
  499. background-size: contain;
  500. margin: auto;
  501. background-repeat: no-repeat;
  502. }
  503. .btn-link, a {
  504. color: #2cabe3;
  505. text-decoration: none;
  506. }
  507. @media (pointer: coarse) {
  508. #side-menu > li > a:hover,
  509. #side-menu > li > a:focus {
  510. background: transparent;
  511. }
  512. }
  513. .fc-view-container .fc-view .fc-scroller {
  514. max-height: 215px !important;
  515. }
  516. .fc-view-container .fc-month-view .fc-scroller,
  517. .fc-view-container .fc-basicWeek-view .fc-scroller {
  518. max-height: 100% !important;
  519. height: 100% !important;
  520. }
  521. .fc-scroller .simplebar-content {
  522. min-height: auto !important;
  523. overflow-x: hidden !important;
  524. padding-bottom: 0px !important;
  525. }
  526. .simplebar-content {
  527. min-height: auto !important;
  528. overflow-x: auto !important;
  529. }
  530. .simplebar-scroll-content {
  531. margin-bottom: 0px !important;
  532. }
  533. .flexbox {
  534. display: flex;
  535. flex-wrap: wrap;
  536. }
  537. @media (min-width: 2000px) {
  538. .col-xl {
  539. -ms-flex-preferred-size: 0;
  540. flex-basis: 0;
  541. -ms-flex-positive: 1;
  542. flex-grow: 1;
  543. max-width: 100%;
  544. }
  545. .col-xl-auto {
  546. -ms-flex: 0 0 auto;
  547. flex: 0 0 auto;
  548. width: auto;
  549. max-width: none;
  550. }
  551. .col-xl-1 {
  552. -ms-flex: 0 0 8.333333%;
  553. flex: 0 0 8.333333%;
  554. max-width: 8.333333%;
  555. }
  556. .col-xl-2 {
  557. -ms-flex: 0 0 16.666667%;
  558. flex: 0 0 16.666667%;
  559. max-width: 16.666667%;
  560. }
  561. .col-xl-3 {
  562. -ms-flex: 0 0 25%;
  563. flex: 0 0 25%;
  564. max-width: 25%;
  565. }
  566. .col-xl-4 {
  567. -ms-flex: 0 0 33.333333%;
  568. flex: 0 0 33.333333%;
  569. max-width: 33.333333%;
  570. }
  571. .col-xl-5 {
  572. -ms-flex: 0 0 41.666667%;
  573. flex: 0 0 41.666667%;
  574. max-width: 41.666667%;
  575. }
  576. .col-xl-6 {
  577. -ms-flex: 0 0 50%;
  578. flex: 0 0 50%;
  579. max-width: 50%;
  580. }
  581. .col-xl-7 {
  582. -ms-flex: 0 0 58.333333%;
  583. flex: 0 0 58.333333%;
  584. max-width: 58.333333%;
  585. }
  586. .col-xl-8 {
  587. -ms-flex: 0 0 66.666667%;
  588. flex: 0 0 66.666667%;
  589. max-width: 66.666667%;
  590. }
  591. .col-xl-9 {
  592. -ms-flex: 0 0 75%;
  593. flex: 0 0 75%;
  594. max-width: 75%;
  595. }
  596. .col-xl-10 {
  597. -ms-flex: 0 0 83.333333%;
  598. flex: 0 0 83.333333%;
  599. max-width: 83.333333%;
  600. }
  601. .col-xl-11 {
  602. -ms-flex: 0 0 91.666667%;
  603. flex: 0 0 91.666667%;
  604. max-width: 91.666667%;
  605. }
  606. .col-xl-12 {
  607. -ms-flex: 0 0 100%;
  608. flex: 0 0 100%;
  609. max-width: 100%;
  610. }
  611. .order-xl-first {
  612. -ms-flex-order: -1;
  613. order: -1;
  614. }
  615. .order-xl-last {
  616. -ms-flex-order: 13;
  617. order: 13;
  618. }
  619. .order-xl-0 {
  620. -ms-flex-order: 0;
  621. order: 0;
  622. }
  623. .order-xl-1 {
  624. -ms-flex-order: 1;
  625. order: 1;
  626. }
  627. .order-xl-2 {
  628. -ms-flex-order: 2;
  629. order: 2;
  630. }
  631. .order-xl-3 {
  632. -ms-flex-order: 3;
  633. order: 3;
  634. }
  635. .order-xl-4 {
  636. -ms-flex-order: 4;
  637. order: 4;
  638. }
  639. .order-xl-5 {
  640. -ms-flex-order: 5;
  641. order: 5;
  642. }
  643. .order-xl-6 {
  644. -ms-flex-order: 6;
  645. order: 6;
  646. }
  647. .order-xl-7 {
  648. -ms-flex-order: 7;
  649. order: 7;
  650. }
  651. .order-xl-8 {
  652. -ms-flex-order: 8;
  653. order: 8;
  654. }
  655. .order-xl-9 {
  656. -ms-flex-order: 9;
  657. order: 9;
  658. }
  659. .order-xl-10 {
  660. -ms-flex-order: 10;
  661. order: 10;
  662. }
  663. .order-xl-11 {
  664. -ms-flex-order: 11;
  665. order: 11;
  666. }
  667. .order-xl-12 {
  668. -ms-flex-order: 12;
  669. order: 12;
  670. }
  671. .offset-xl-0 {
  672. margin-left: 0;
  673. }
  674. .offset-xl-1 {
  675. margin-left: 8.333333%;
  676. }
  677. .offset-xl-2 {
  678. margin-left: 16.666667%;
  679. }
  680. .offset-xl-3 {
  681. margin-left: 25%;
  682. }
  683. .offset-xl-4 {
  684. margin-left: 33.333333%;
  685. }
  686. .offset-xl-5 {
  687. margin-left: 41.666667%;
  688. }
  689. .offset-xl-6 {
  690. margin-left: 50%;
  691. }
  692. .offset-xl-7 {
  693. margin-left: 58.333333%;
  694. }
  695. .offset-xl-8 {
  696. margin-left: 66.666667%;
  697. }
  698. .offset-xl-9 {
  699. margin-left: 75%;
  700. }
  701. .offset-xl-10 {
  702. margin-left: 83.333333%;
  703. }
  704. .offset-xl-11 {
  705. margin-left: 91.666667%;
  706. }
  707. }
  708. input.has-success {
  709. border-bottom: 8px solid #4CAF50;
  710. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  711. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  712. }
  713. .message-center {
  714. max-height: 250px;
  715. }
  716. .fc-alternate {
  717. background: transparent;
  718. border-bottom: 1px solid;
  719. border-color: rgba(120,130,140,.13);
  720. }
  721. .fc-state-disabled {
  722. display: none;
  723. }
  724. .resultBox-outside {
  725. max-height: 96vh;
  726. }
  727. .resultBox-inside {
  728. height: 100%;
  729. max-height: 85vh;
  730. overflow-x: hidden;
  731. overflow-y: scroll;
  732. }
  733. .loginLogo {
  734. max-width: 350px;
  735. max-height: 225px;
  736. }
  737. .recent-items .owl-item {
  738. height: 225px;
  739. }
  740. .tooltip-content5 {
  741. position: absolute;
  742. z-index: 9999;
  743. min-width: 300px;
  744. max-width: 350px;
  745. left: 50%;
  746. bottom: 100%;
  747. font-size: 20px;
  748. line-height: 1.4;
  749. text-align: center;
  750. font-weight: 400;
  751. color: #fff;
  752. background: 0 0;
  753. opacity: 0;
  754. margin: 0 0 20px -150px;
  755. cursor: default;
  756. pointer-events: none;
  757. -webkit-font-smoothing: antialiased;
  758. -webkit-transition: opacity .3s .3s;
  759. transition: opacity .3s .3s;
  760. }
  761. .tooltip-inner2 {
  762. background: #2b2b2b;
  763. padding: 40px 0px;
  764. -webkit-transform: translate3d(0,100%,0);
  765. transform: translate3d(0,100%,0);
  766. webkit-transition: -webkit-transform .3s;
  767. transition: transform .3s;
  768. }
  769. #scroll {
  770. position:fixed;
  771. right:10px;
  772. bottom:10px;
  773. cursor:pointer;
  774. width:50px;
  775. height:50px;
  776. background-color:#3498db;
  777. text-indent:-9999px;
  778. display:none;
  779. -webkit-border-radius:60px;
  780. -moz-border-radius:60px;
  781. border-radius:60px;
  782. z-index: 1;
  783. }
  784. #scroll span {
  785. position:absolute;
  786. top:50%;
  787. left:50%;
  788. margin-left:-8px;
  789. margin-top:-12px;
  790. height:0;
  791. width:0;
  792. border:8px solid transparent;
  793. border-bottom-color:#ffffff;
  794. }
  795. #scroll:hover {
  796. background-color:#e74c3c;
  797. opacity:1;filter:"alpha(opacity=100)";
  798. -ms-filter:"alpha(opacity=100)";
  799. }