guest.css 18 KB

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