guest.css 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895
  1. /* Copyright (c) 2011, Jan-Christoph Borchardt, http://jancborchardt.net
  2. This file is licensed under the Affero General Public License version 3 or later.
  3. See the COPYING-README file. */
  4. /* Default and reset */
  5. html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section { margin:0; padding:0; border:0; outline:0; font-weight:inherit; font-size:100%; font-family:inherit; vertical-align:baseline; cursor:default; }
  6. html { height:100%; }
  7. article, aside, dialog, figure, footer, header, hgroup, nav, section { display:block; }
  8. body { line-height:1.5; }
  9. table { border-collapse:separate; border-spacing:0; white-space:nowrap; }
  10. caption, th, td { text-align:left; font-weight:normal; }
  11. table, td, th { vertical-align:middle; }
  12. a { border:0; color:#000; text-decoration:none;}
  13. a, a *, input, input *, select, .button span, label { cursor:pointer; }
  14. ul { list-style:none; }
  15. body {
  16. background-color: #ffffff;
  17. font-weight: normal;
  18. font-size: .8em;
  19. line-height: 1.6em;
  20. font-family: 'Nunito', 'Open Sans', Frutiger, Calibri, 'Myriad Pro', Myriad, sans-serif;
  21. color: #000;
  22. text-align: center;
  23. background-color: #0082c9;
  24. background-image: url('../img/background.png?v=2');
  25. background-position: 50% 50%;
  26. background-repeat: no-repeat;
  27. background-size: cover;
  28. background-attachment: fixed; /* fix background gradient */
  29. min-height: 100%; /* fix sticky footer */
  30. height: auto;
  31. }
  32. /* Various fonts settings */
  33. #body-login a {
  34. color: #fff;
  35. font-weight: 600;
  36. }
  37. #body-login a:not(.button):hover,
  38. #body-login a:not(.button):focus {
  39. text-decoration: underline;
  40. text-decoration-skip-ink: auto;
  41. }
  42. #showAdvanced {
  43. color: #fff;
  44. }
  45. em {
  46. font-style: normal;
  47. opacity: .5;
  48. }
  49. /* heading styles */
  50. h2,
  51. h3,
  52. h4 {
  53. font-weight: bold;
  54. }
  55. h2 {
  56. font-size: 20px;
  57. margin-bottom: 12px;
  58. line-height: 140%;
  59. }
  60. h3 {
  61. font-size: 15px;
  62. margin: 12px 0;
  63. }
  64. /* Global content */
  65. body {
  66. display: flex;
  67. flex-direction: column;
  68. justify-content: center;
  69. align-items: center;
  70. }
  71. #header .logo {
  72. background-image: url('../img/logo/logo.svg?v=1');
  73. background-repeat: no-repeat;
  74. background-size: 175px;
  75. background-position: center;
  76. width: 256px;
  77. min-height: 128px;
  78. max-height: 200px;
  79. margin: 0 auto;
  80. position: relative;
  81. left: unset;
  82. }
  83. #header .logo img {
  84. opacity: 0;
  85. max-width: 100%;
  86. max-height: 200px;
  87. }
  88. .wrapper {
  89. width: 300px;
  90. margin-top: 10vh;
  91. }
  92. /* Default FORM */
  93. form {
  94. position: relative;
  95. width: 280px;
  96. margin: auto;
  97. padding: 0;
  98. }
  99. form fieldset {
  100. margin-bottom: 20px;
  101. text-align: left;
  102. -webkit-user-select: none;
  103. -moz-user-select: none;
  104. -ms-user-select: none;
  105. user-select: none;
  106. }
  107. form #sqliteInformation {
  108. margin-top: -20px;
  109. margin-bottom: 20px;
  110. }
  111. form #adminaccount {
  112. margin-bottom: 15px;
  113. }
  114. form fieldset legend, #datadirContent label {
  115. width: 100%;
  116. }
  117. #datadirContent label {
  118. display: block;
  119. margin: 0;
  120. }
  121. form #datadirField legend {
  122. margin-bottom: 15px;
  123. }
  124. /* View more button */
  125. #showAdvanced {
  126. padding: 13px; /* increase clickable area of Advanced dropdown */
  127. }
  128. #showAdvanced img {
  129. vertical-align: middle; /* adjust position of Advanced dropdown arrow */
  130. }
  131. /* Buttons and input */
  132. #submit-wrapper,
  133. #reset-password-wrapper {
  134. display: flex;
  135. align-items: center;
  136. justify-content: center;
  137. position: relative; /* Make the wrapper the containing block of its
  138. absolutely positioned descendant icons */
  139. }
  140. #submit-wrapper .submit-icon {
  141. position: absolute;
  142. top: 22px;
  143. right: 24px;
  144. transition: right 100ms ease-in-out;
  145. pointer-events: none; /* The submit icon is positioned on the submit button.
  146. From the user point of view the icon is part of the
  147. button, so the clicks on the icon have to be
  148. applied to the button instead. */
  149. }
  150. #submit-wrapper input.login:hover ~ .submit-icon.icon-confirm-white,
  151. #submit-wrapper input.login:focus ~ .submit-icon.icon-confirm-white,
  152. #submit-wrapper input.login:active ~ .submit-icon.icon-confirm-white {
  153. right: 20px;
  154. }
  155. #reset-password-submit {
  156. padding: 10px;
  157. overflow: hidden;
  158. text-overflow: ellipsis;
  159. }
  160. #reset-password-wrapper .submit-icon {
  161. display: none;
  162. }
  163. #submit-wrapper .icon-loading-small {
  164. position: absolute;
  165. top: 22px;
  166. right: 26px;
  167. }
  168. input, textarea, select, button, div[contenteditable=true] {
  169. font-family: 'Nunito', 'Open Sans', Frutiger, Calibri, 'Myriad Pro', Myriad, sans-serif;
  170. }
  171. input,
  172. input:not([type='range']),
  173. a.button {
  174. font-size: 20px;
  175. margin: 5px;
  176. padding: 11px 10px 9px;
  177. outline: none;
  178. border-radius: 3px; /* --border-radius */
  179. -webkit-appearance: none;
  180. }
  181. input[type='submit'],
  182. input[type='submit'].icon-confirm,
  183. input[type='button'],
  184. button,
  185. a.button,
  186. .button,
  187. select {
  188. display: inline-block;
  189. width: auto;
  190. min-width: 25px;
  191. padding: 12px;
  192. background-color: white;
  193. font-weight: bold;
  194. color: #555;
  195. border: none;
  196. border-radius: 100px; /* --border-radius-pill */
  197. cursor: pointer;
  198. }
  199. input[type='text'],
  200. input[type='tel'],
  201. input[type='password'],
  202. input[type='email'] {
  203. width: 249px;
  204. background: #fff;
  205. color: #555;
  206. cursor: text;
  207. font-family: inherit;
  208. -webkit-appearance: textfield;
  209. -moz-appearance: textfield;
  210. box-sizing: content-box;
  211. border: none;
  212. font-weight: normal;
  213. }
  214. input.login {
  215. width: 260px;
  216. height: 50px;
  217. background-position: right 16px center;
  218. }
  219. input[type='submit'],
  220. input[type='submit'].icon-confirm,
  221. input.updateButton,
  222. input.update-continue {
  223. padding: 10px 20px; /* larger log in and installation buttons */
  224. }
  225. .updateAnyways a.updateAnywaysButton {
  226. font-size: 14px;
  227. padding: 10px 20px;
  228. color: #666 !important;
  229. display: inline-block;
  230. border-radius: 100px; /* --border-radius-pill */
  231. margin: 15px 5px;
  232. }
  233. .updateAnyways a.updateAnywaysButton:hover {
  234. color: #222 !important;
  235. }
  236. /* Get rid of the inside dotted line in Firefox */
  237. button::-moz-focus-inner,
  238. input::-moz-focus-inner {
  239. border: 0;
  240. }
  241. input.primary,
  242. button.primary,
  243. a.primary {
  244. border: 1px solid #fff;
  245. background-color: #0082c9;
  246. color: #fff;
  247. transition: color 100ms ease-in-out;
  248. }
  249. input.primary:not(:disabled):hover,
  250. input.primary:not(:disabled):focus,
  251. button.primary:not(:disabled):hover,
  252. button.primary:not(:disabled):focus,
  253. a.primary:not(:disabled):hover,
  254. a.primary:not(:disabled):focus {
  255. color: rgba(255, 255, 255, .8);
  256. }
  257. /* Checkboxes - white only for login */
  258. input[type='checkbox'].checkbox {
  259. position: absolute;
  260. left: -10000px;
  261. top: auto;
  262. width: 1px;
  263. height: 1px;
  264. overflow: hidden;
  265. }
  266. input[type='checkbox'].checkbox + label {
  267. user-select: none;
  268. }
  269. input[type='checkbox'].checkbox:disabled + label,
  270. input[type='checkbox'].checkbox:disabled + label:before {
  271. cursor: default;
  272. }
  273. input[type='checkbox'].checkbox + label:before {
  274. content: '';
  275. display: inline-block;
  276. vertical-align: middle;
  277. margin: 3px;
  278. margin-top: 1px;
  279. border: 1px solid #888;
  280. border-radius: 1px;
  281. height: 10px;
  282. width: 10px;
  283. background-position: center;
  284. }
  285. input[type='checkbox'].checkbox--white + label:before {
  286. border-color: #ddd;
  287. }
  288. input[type='checkbox'].checkbox--white:not(:disabled):not(:checked) + label:hover:before,
  289. input[type='checkbox'].checkbox--white:focus + label:before {
  290. border-color: #fff;
  291. }
  292. input[type='checkbox'].checkbox--white:checked + label:before {
  293. background-color: #eee;
  294. border-color: #eee;
  295. }
  296. input[type='checkbox'].checkbox--white:disabled + label:before {
  297. background-color: #666 !important;
  298. border-color: #999 !important;
  299. }
  300. input[type='checkbox'].checkbox--white:checked:disabled + label:before {
  301. border-color: #666;
  302. background-color: #222;
  303. }
  304. input[type='checkbox'].checkbox--white:checked + label:before {
  305. background-color: transparent !important;
  306. border-color: #fff !important;
  307. background-image: url('../img/actions/checkbox-mark-white.svg');
  308. }
  309. /* keep the labels for screen readers but hide them since we use placeholders */
  310. label.infield {
  311. display: none;
  312. }
  313. /* Password strength meter */
  314. .strengthify-wrapper {
  315. display: inline-block;
  316. position: relative;
  317. left: 5px;
  318. top: -20px;
  319. width: 269px;
  320. border-radius: 0 0 3px 3px;
  321. overflow: hidden;
  322. height: 3px;
  323. }
  324. .tooltip-inner {
  325. font-weight: bold;
  326. color: #ccc;
  327. padding: 3px 6px;
  328. text-align: center;
  329. }
  330. /* Show password toggle */
  331. #show, #dbpassword-toggle {
  332. position: absolute;
  333. right: 1em;
  334. top: .8em;
  335. float: right;
  336. }
  337. #show, #dbpassword-toggle, #personal-show {
  338. display: none;
  339. }
  340. #show + label, #dbpassword-toggle + label {
  341. right: 21px;
  342. top: 15px !important;
  343. margin: -14px !important;
  344. padding: 14px !important;
  345. }
  346. #show:checked + label, #dbpassword-toggle:checked + label, #personal-show:checked + label {
  347. opacity: .8;
  348. }
  349. #show + label, #dbpassword-toggle + label, #personal-show + label {
  350. position: absolute !important;
  351. height: 20px;
  352. width: 24px;
  353. background-image: url('../img/actions/toggle.svg?v=1');
  354. background-repeat: no-repeat;
  355. background-position: center;
  356. opacity: .3;
  357. }
  358. #show + label:before, #dbpassword-toggle + label:before, #personal-show + label:before {
  359. display: none;
  360. }
  361. #pass2, input[name='personal-password-clone'] {
  362. padding: .6em 2.5em .4em .4em;
  363. width: 8em;
  364. }
  365. #personal-show + label {
  366. height: 14px;
  367. margin-top: -25px;
  368. left: 295px;
  369. display: block;
  370. }
  371. #passwordbutton {
  372. margin-left: .5em;
  373. }
  374. /* Dark subtle label text */
  375. p.info,
  376. form fieldset legend,
  377. #datadirContent label,
  378. form fieldset .warning-info,
  379. form input[type='checkbox']+label {
  380. text-align: center;
  381. color: #fff;
  382. }
  383. /* overrides another !important statement that sets this to unreadable black */
  384. form .warning input[type='checkbox']:hover+label,
  385. form .warning input[type='checkbox']:focus+label,
  386. form .warning input[type='checkbox']+label {
  387. color: #fff !important;
  388. }
  389. .two-factor-provider {
  390. display: flex;
  391. border-radius: 3px; /* --border-radius */
  392. margin: 12px 0;
  393. border: 1px solid transparent;
  394. text-align: left;
  395. align-items: center;
  396. text-decoration: none !important;
  397. }
  398. .two-factor-provider:hover,
  399. .two-factor-provider:focus,
  400. .two-factor-provider:active {
  401. border: 1px solid #fff;
  402. }
  403. .two-factor-provider img {
  404. width: 64px;
  405. height: 64px;
  406. padding: 0 12px;
  407. }
  408. .two-factor-provider div {
  409. margin: 12px 0;
  410. }
  411. .two-factor-provider h3 {
  412. margin: 0;
  413. }
  414. .two-factor-provider p {
  415. font-weight: normal;
  416. }
  417. .two-factor-icon {
  418. width: 100px;
  419. display: block;
  420. margin: 0 auto;
  421. }
  422. .two-factor-submit {
  423. width: 100%;
  424. padding: 10px;
  425. margin: 0 0 5px 0;
  426. border-radius: 100px; /* --border-radius-pill */
  427. font-size: 20px;
  428. }
  429. .two-factor-primary {
  430. /* Fix for 'Use backup codes' button not taking correct styles */
  431. padding: 14px !important;
  432. width: 226px;
  433. }
  434. .two-factor-secondary {
  435. display: inline-block;
  436. padding: 12px;
  437. }
  438. /* Additional login options */
  439. #remember_login {
  440. margin: 18px 5px 0 16px !important;
  441. }
  442. .remember-login-container,
  443. .lost-password-container {
  444. display: inline-block;
  445. margin: 10px 0;
  446. text-align: center;
  447. width: 100%;
  448. text-shadow: 0 0 2px rgba(0, 0, 0, .4); /* better readability on bright background */
  449. }
  450. .lost-password-container #lost-password,
  451. .lost-password-container #lost-password-back {
  452. display: inline-block;
  453. font-weight: normal;
  454. padding: 12px;
  455. margin-top: -6px;
  456. color: #fff;
  457. cursor: pointer;
  458. }
  459. #forgot-password {
  460. padding: 11px;
  461. float: right;
  462. color: #fff;
  463. }
  464. /* Alternative Logins */
  465. #alternative-logins legend {
  466. margin-bottom: 10px;
  467. }
  468. #alternative-logins li {
  469. height: 40px;
  470. white-space: nowrap;
  471. padding: 05px;
  472. }
  473. #alternative-logins li a {
  474. width: 100%;
  475. display: inline-block;
  476. text-align: center;
  477. box-sizing: border-box;
  478. background-color: #0082c9;
  479. color: white;
  480. border-radius: 100px; /* --border-radius-pill */
  481. }
  482. /* fixes for update page TODO should be fixed some time in a proper way */
  483. /* this is just for an error while updating the ownCloud instance */
  484. .updateProgress .error {
  485. margin-top: 10px;
  486. margin-bottom: 10px;
  487. }
  488. /* Database selector on install page */
  489. form #selectDbType {
  490. text-align:center;
  491. white-space: nowrap;
  492. margin: 0;
  493. display: flex;
  494. }
  495. form #selectDbType .info {
  496. white-space: normal;
  497. }
  498. form #selectDbType label {
  499. flex-grow: 1;
  500. margin: 0 -1px 5px;
  501. font-size: 12px;
  502. background:#f8f8f8;
  503. color:#888;
  504. cursor:pointer;
  505. border: 1px solid #ddd;
  506. }
  507. form #selectDbType label span {
  508. cursor: pointer;
  509. padding: 10px 17px;
  510. }
  511. form #selectDbType label.ui-state-hover,
  512. form #selectDbType label.ui-state-active {
  513. color:#000;
  514. background-color:#e8e8e8; }
  515. /* Nicely grouping input field sets */
  516. .grouptop,
  517. .groupmiddle,
  518. .groupbottom {
  519. position: relative;
  520. -webkit-user-select: none;
  521. -moz-user-select: none;
  522. -ms-user-select: none;
  523. user-select: none;
  524. }
  525. .grouptop input {
  526. margin-bottom: 0 !important;
  527. border-bottom: 0 !important;
  528. border-bottom-left-radius: 0 !important;
  529. border-bottom-right-radius: 0 !important;
  530. }
  531. .groupmiddle input {
  532. margin-top: 0 !important;
  533. margin-bottom: 0 !important;
  534. border-top: 0 !important;
  535. border-bottom: 0 !important;
  536. border-radius: 0 !important;
  537. box-shadow: 0 1px 0 rgba(0,0,0,.1) inset !important;
  538. }
  539. .groupbottom input {
  540. margin-top: 0 !important;
  541. border-top: 0 !important;
  542. border-top-right-radius: 0 !important;
  543. border-top-left-radius: 0 !important;
  544. box-shadow: 0 1px 0 rgba(0,0,0,.1) inset !important;
  545. }
  546. .groupbottom input[type=submit] {
  547. box-shadow: none !important;
  548. }
  549. /* Errors */
  550. /* Warnings and errors are the same */
  551. .body-login-container,
  552. .warning,
  553. .update,
  554. .error {
  555. display: block;
  556. margin-top: 15px;
  557. padding: 15px;
  558. background-color: rgba(0,0,0,.3);
  559. color: #fff;
  560. text-align: left;
  561. word-wrap: break-word;
  562. border-radius: 10px; /* --border-radius-large */
  563. cursor: default;
  564. -moz-user-select: text;
  565. -webkit-user-select: text;
  566. -ms-user-select: text;
  567. user-select: text;
  568. }
  569. .body-login-container h2,
  570. .warning h2,
  571. .update h2,
  572. .error h2 {
  573. color: #fff;
  574. text-align: center;
  575. }
  576. /* TODO: Change all .warning/.update/.error to .body-login-container */
  577. .body-login-container .icon-big {
  578. background-size: 70px;
  579. height: 70px;
  580. }
  581. .body-login-container form {
  582. width: initial;
  583. }
  584. .body-login-container p:not(:last-child) {
  585. margin-bottom: 12px;
  586. }
  587. .warning.updateAnyways {
  588. text-align: center;
  589. }
  590. .warning legend,
  591. .warning a,
  592. .error a {
  593. color: #fff !important;
  594. font-weight: bold !important;
  595. opacity: 1;
  596. }
  597. .error a.button {
  598. color: #555 !important;
  599. display: inline-block;
  600. text-align: center;
  601. }
  602. .error pre {
  603. white-space: pre-wrap;
  604. text-align: left;
  605. }
  606. .error-wide {
  607. width: 700px;
  608. margin-left: -200px !important;
  609. margin-top: 35px;
  610. }
  611. .error-wide .button {
  612. color: black !important;
  613. }
  614. .warning-input {
  615. border-color: #ce3702 !important;
  616. }
  617. a.warning {
  618. cursor: pointer;
  619. }
  620. fieldset.warning legend,
  621. fieldset.update legend {
  622. top: 18px;
  623. position: relative;
  624. }
  625. fieldset.warning legend + p,
  626. fieldset.update legend + p {
  627. margin-top: 12px;
  628. }
  629. /* Various paragraph styles */
  630. .infogroup {
  631. margin: 8px 0;
  632. }
  633. .infogroup:last-child {
  634. margin-bottom: 0;
  635. }
  636. p.info {
  637. margin: 20px auto;
  638. text-shadow: 0 0 2px rgba(0, 0, 0, .4); /* better readability on bright background */
  639. -webkit-user-select: none;
  640. -moz-user-select: none;
  641. -ms-user-select: none;
  642. user-select: none;
  643. }
  644. /* Update */
  645. .update {
  646. width: inherit;
  647. text-align: center;
  648. }
  649. .update .appList {
  650. list-style: disc;
  651. text-align: left;
  652. margin-left: 25px;
  653. margin-right: 25px;
  654. }
  655. .update img.float-spinner {
  656. float: left;
  657. }
  658. .update a.update-show-detailed {
  659. border-bottom: inherit;
  660. }
  661. #update-progress-detailed {
  662. text-align: left;
  663. margin-bottom: 12px;
  664. }
  665. .update-show-detailed {
  666. padding: 12px;
  667. display: block;
  668. opacity: .75;
  669. }
  670. .update-show-detailed .icon-caret-white {
  671. display: inline-block;
  672. vertical-align: middle;
  673. }
  674. #update-progress-icon {
  675. height: 32px;
  676. margin: 10px;
  677. background-size: 32px;
  678. }
  679. /* Icons */
  680. .icon-info-white {
  681. background-image: url('../img/actions/info-white.svg?v=2');
  682. }
  683. .icon-error-white {
  684. background-image: url('../img/actions/error-white.svg?v=1');
  685. }
  686. .icon-caret-white {
  687. background-image: url('../img/actions/caret-white.svg?v=1');
  688. }
  689. .icon-confirm {
  690. background-image: url('../img/actions/confirm.svg?v=2');
  691. }
  692. .icon-confirm-white {
  693. background-image: url('../img/actions/confirm-white.svg?v=2');
  694. }
  695. .icon-checkmark-white {
  696. background-image: url('../img/actions/checkmark-white.svg?v=1');
  697. }
  698. /* Loading */
  699. .float-spinner {
  700. margin-top: -32px;
  701. padding-top: 32px;
  702. height: 32px;
  703. display: none;
  704. }
  705. [class^='icon-'], [class*=' icon-'] {
  706. background-repeat: no-repeat;
  707. background-position: center;
  708. min-width: 16px;
  709. min-height: 16px;
  710. }
  711. .loading, .loading-small, .icon-loading, .icon-loading-dark, .icon-loading-small, .icon-loading-small-dark {
  712. position: relative;
  713. }
  714. .loading:after, .loading-small:after, .icon-loading:after, .icon-loading-dark:after, .icon-loading-small:after, .icon-loading-small-dark:after {
  715. z-index: 2;
  716. content: '';
  717. height: 32px;
  718. width: 32px;
  719. margin: -17px 0 0 -17px;
  720. position: absolute;
  721. top: 50%;
  722. left: 50%;
  723. border-radius: 100%;
  724. -webkit-animation: rotate .8s infinite linear;
  725. animation: rotate .8s infinite linear;
  726. -webkit-transform-origin: center;
  727. -ms-transform-origin: center;
  728. transform-origin: center;
  729. }
  730. .loading:after, .loading-small:after, .icon-loading:after, .icon-loading-dark:after, .icon-loading-small:after, .icon-loading-small-dark:after {
  731. border: 2px solid rgba(150, 150, 150, 0.5);
  732. border-top-color: #646464;
  733. }
  734. .icon-loading-dark:after, .icon-loading-small-dark:after {
  735. border: 2px solid rgba(187, 187, 187, 0.5);
  736. border-top-color: #bbb;
  737. }
  738. .icon-loading-small:after, .icon-loading-small-dark:after {
  739. height: 16px;
  740. width: 16px;
  741. margin: -9px 0 0 -9px;
  742. }
  743. /* Css replaced elements don't have ::after nor ::before */
  744. img.icon-loading, object.icon-loading, video.icon-loading, button.icon-loading, textarea.icon-loading, input.icon-loading, select.icon-loading, div[contenteditable=true].icon-loading {
  745. background-image: url('../img/loading.gif');
  746. }
  747. img.icon-loading-dark, object.icon-loading-dark, video.icon-loading-dark, button.icon-loading-dark, textarea.icon-loading-dark, input.icon-loading-dark, select.icon-loading-dark, div[contenteditable=true].icon-loading-dark {
  748. background-image: url('../img/loading-dark.gif');
  749. }
  750. img.icon-loading-small, object.icon-loading-small, video.icon-loading-small, button.icon-loading-small, textarea.icon-loading-small, input.icon-loading-small, select.icon-loading-small, div[contenteditable=true].icon-loading-small {
  751. background-image: url('../img/loading-small.gif');
  752. }
  753. img.icon-loading-small-dark, object.icon-loading-small-dark, video.icon-loading-small-dark, button.icon-loading-small-dark, textarea.icon-loading-small-dark, input.icon-loading-small-dark, select.icon-loading-small-dark, div[contenteditable=true].icon-loading-small-dark {
  754. background-image: url('../img/loading-small-dark.gif');
  755. }
  756. @-webkit-keyframes rotate {
  757. from {
  758. -webkit-transform: rotate(0deg);
  759. transform: rotate(0deg);
  760. }
  761. to {
  762. -webkit-transform: rotate(360deg);
  763. transform: rotate(360deg);
  764. }
  765. }
  766. @keyframes rotate {
  767. from {
  768. -webkit-transform: rotate(0deg);
  769. transform: rotate(0deg);
  770. }
  771. to {
  772. -webkit-transform: rotate(360deg);
  773. transform: rotate(360deg);
  774. }
  775. }
  776. /* FOOTER */
  777. footer {
  778. height: 70px;
  779. margin-top: auto;
  780. }
  781. footer .info .entity-name {
  782. font-weight: bold;
  783. }
  784. .hidden {
  785. display: none;
  786. }
  787. .hidden-visually {
  788. position: absolute;
  789. left:-10000px;
  790. top: auto;
  791. width: 1px;
  792. height: 1px;
  793. overflow: hidden;
  794. }
  795. a.legal {
  796. font-size: smaller;
  797. }
  798. /* latin-ext */
  799. @font-face {
  800. font-family: 'Nunito';
  801. font-style: normal;
  802. font-weight: 400; /* normal */
  803. src: local('Nunito Regular'), local('Nunito-Regular'),
  804. url('../fonts/Nunito-Regular-latin-ext.woff2') format('woff2'),
  805. url('../fonts/Nunito-Regular.ttf') format('truetype');
  806. unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  807. }
  808. /* latin */
  809. @font-face {
  810. font-family: 'Nunito';
  811. font-style: normal;
  812. font-weight: 400; /* normal */
  813. src: local('Nunito Regular'), local('Nunito-Regular'),
  814. url('../fonts/Nunito-Regular.woff2') format('woff2'),
  815. url('../fonts/Nunito-Regular.ttf') format('truetype');
  816. unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  817. }
  818. /* latin-ext */
  819. @font-face {
  820. font-family: 'Nunito';
  821. font-style: normal;
  822. font-weight: 700; /* bold */
  823. src: local('Nunito Bold'), local('Nunito-Bold'),
  824. url('../fonts/Nunito-Bold-latin-ext.woff2') format('woff2'),
  825. url('../fonts/Nunito-Bold.ttf') format('truetype');
  826. unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  827. }
  828. /* latin */
  829. @font-face {
  830. font-family: 'Nunito';
  831. font-style: normal;
  832. font-weight: 700; /* bold */
  833. src: local('Nunito Bold'), local('Nunito-Bold'),
  834. url('../fonts/Nunito-Bold.woff2') format('woff2'),
  835. url('../fonts/Nunito-Bold.ttf') format('truetype');
  836. unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  837. }