base.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978
  1. /*
  2. DJANGO Admin styles
  3. */
  4. @import url(fonts.css);
  5. body {
  6. margin: 0;
  7. padding: 0;
  8. font-size: 14px;
  9. font-family: "Roboto","Lucida Grande","DejaVu Sans","Bitstream Vera Sans",Verdana,Arial,sans-serif;
  10. color: #333;
  11. background: #fff;
  12. }
  13. /* LINKS */
  14. a:link, a:visited {
  15. color: #447e9b;
  16. text-decoration: none;
  17. }
  18. a:focus, a:hover {
  19. color: #036;
  20. }
  21. a:focus {
  22. text-decoration: underline;
  23. }
  24. a img {
  25. border: none;
  26. }
  27. a.section:link, a.section:visited {
  28. color: #fff;
  29. text-decoration: none;
  30. }
  31. a.section:focus, a.section:hover {
  32. text-decoration: underline;
  33. }
  34. /* GLOBAL DEFAULTS */
  35. p, ol, ul, dl {
  36. margin: .2em 0 .8em 0;
  37. }
  38. p {
  39. padding: 0;
  40. line-height: 140%;
  41. }
  42. h1,h2,h3,h4,h5 {
  43. font-weight: bold;
  44. }
  45. h1 {
  46. margin: 0 0 20px;
  47. font-weight: 300;
  48. font-size: 20px;
  49. color: #666;
  50. }
  51. h2 {
  52. font-size: 16px;
  53. margin: 1em 0 .5em 0;
  54. }
  55. h2.subhead {
  56. font-weight: normal;
  57. margin-top: 0;
  58. }
  59. h3 {
  60. font-size: 14px;
  61. margin: .8em 0 .3em 0;
  62. color: #666;
  63. font-weight: bold;
  64. }
  65. h4 {
  66. font-size: 12px;
  67. margin: 1em 0 .8em 0;
  68. padding-bottom: 3px;
  69. }
  70. h5 {
  71. font-size: 10px;
  72. margin: 1.5em 0 .5em 0;
  73. color: #666;
  74. text-transform: uppercase;
  75. letter-spacing: 1px;
  76. }
  77. ul li {
  78. list-style-type: square;
  79. padding: 1px 0;
  80. }
  81. li ul {
  82. margin-bottom: 0;
  83. }
  84. li, dt, dd {
  85. font-size: 13px;
  86. line-height: 20px;
  87. }
  88. dt {
  89. font-weight: bold;
  90. margin-top: 4px;
  91. }
  92. dd {
  93. margin-left: 0;
  94. }
  95. form {
  96. margin: 0;
  97. padding: 0;
  98. }
  99. fieldset {
  100. margin: 0;
  101. padding: 0;
  102. border: none;
  103. border-top: 1px solid #eee;
  104. }
  105. blockquote {
  106. font-size: 11px;
  107. color: #777;
  108. margin-left: 2px;
  109. padding-left: 10px;
  110. border-left: 5px solid #ddd;
  111. }
  112. code, pre {
  113. font-family: "Bitstream Vera Sans Mono", Monaco, "Courier New", Courier, monospace;
  114. color: #666;
  115. font-size: 12px;
  116. }
  117. pre.literal-block {
  118. margin: 10px;
  119. background: #eee;
  120. padding: 6px 8px;
  121. }
  122. code strong {
  123. color: #930;
  124. }
  125. hr {
  126. clear: both;
  127. color: #eee;
  128. background-color: #eee;
  129. height: 1px;
  130. border: none;
  131. margin: 0;
  132. padding: 0;
  133. font-size: 1px;
  134. line-height: 1px;
  135. }
  136. /* TEXT STYLES & MODIFIERS */
  137. .small {
  138. font-size: 11px;
  139. }
  140. .tiny {
  141. font-size: 10px;
  142. }
  143. p.tiny {
  144. margin-top: -2px;
  145. }
  146. .mini {
  147. font-size: 10px;
  148. }
  149. p.mini {
  150. margin-top: -3px;
  151. }
  152. .help, p.help, form p.help, div.help, form div.help, div.help li {
  153. font-size: 11px;
  154. color: #999;
  155. }
  156. div.help ul {
  157. margin-bottom: 0;
  158. }
  159. .help-tooltip {
  160. cursor: help;
  161. }
  162. p img, h1 img, h2 img, h3 img, h4 img, td img {
  163. vertical-align: middle;
  164. }
  165. .quiet, a.quiet:link, a.quiet:visited {
  166. color: #999;
  167. font-weight: normal;
  168. }
  169. .float-right {
  170. float: right;
  171. }
  172. .float-left {
  173. float: left;
  174. }
  175. .clear {
  176. clear: both;
  177. }
  178. .align-left {
  179. text-align: left;
  180. }
  181. .align-right {
  182. text-align: right;
  183. }
  184. .example {
  185. margin: 10px 0;
  186. padding: 5px 10px;
  187. background: #efefef;
  188. }
  189. .nowrap {
  190. white-space: nowrap;
  191. }
  192. /* TABLES */
  193. table {
  194. border-collapse: collapse;
  195. border-color: #ccc;
  196. }
  197. td, th {
  198. font-size: 13px;
  199. line-height: 16px;
  200. border-bottom: 1px solid #eee;
  201. vertical-align: top;
  202. padding: 8px;
  203. font-family: "Roboto", "Lucida Grande", Verdana, Arial, sans-serif;
  204. }
  205. th {
  206. font-weight: 600;
  207. text-align: left;
  208. }
  209. thead th,
  210. tfoot td {
  211. color: #666;
  212. padding: 5px 10px;
  213. font-size: 11px;
  214. background: #fff;
  215. border: none;
  216. border-top: 1px solid #eee;
  217. border-bottom: 1px solid #eee;
  218. }
  219. tfoot td {
  220. border-bottom: none;
  221. border-top: 1px solid #eee;
  222. }
  223. thead th.required {
  224. color: #000;
  225. }
  226. tr.alt {
  227. background: #f6f6f6;
  228. }
  229. .row1 {
  230. background: #fff;
  231. }
  232. .row2 {
  233. background: #f9f9f9;
  234. }
  235. /* SORTABLE TABLES */
  236. thead th {
  237. padding: 5px 10px;
  238. line-height: normal;
  239. text-transform: uppercase;
  240. background: #f6f6f6;
  241. }
  242. thead th a:link, thead th a:visited {
  243. color: #666;
  244. }
  245. thead th.sorted {
  246. background: #eee;
  247. }
  248. thead th.sorted .text {
  249. padding-right: 42px;
  250. }
  251. table thead th .text span {
  252. padding: 8px 10px;
  253. display: block;
  254. }
  255. table thead th .text a {
  256. display: block;
  257. cursor: pointer;
  258. padding: 8px 10px;
  259. }
  260. table thead th .text a:focus, table thead th .text a:hover {
  261. background: #eee;
  262. }
  263. thead th.sorted a.sortremove {
  264. visibility: hidden;
  265. }
  266. table thead th.sorted:hover a.sortremove {
  267. visibility: visible;
  268. }
  269. table thead th.sorted .sortoptions {
  270. display: block;
  271. padding: 9px 5px 0 5px;
  272. float: right;
  273. text-align: right;
  274. }
  275. table thead th.sorted .sortpriority {
  276. font-size: .8em;
  277. min-width: 12px;
  278. text-align: center;
  279. vertical-align: 3px;
  280. margin-left: 2px;
  281. margin-right: 2px;
  282. }
  283. table thead th.sorted .sortoptions a {
  284. position: relative;
  285. width: 14px;
  286. height: 14px;
  287. display: inline-block;
  288. background: url(../img/sorting-icons.svg) 0 0 no-repeat;
  289. background-size: 14px auto;
  290. }
  291. table thead th.sorted .sortoptions a.sortremove {
  292. background-position: 0 0;
  293. }
  294. table thead th.sorted .sortoptions a.sortremove:after {
  295. content: '\\';
  296. position: absolute;
  297. top: -6px;
  298. left: 3px;
  299. font-weight: 200;
  300. font-size: 18px;
  301. color: #999;
  302. }
  303. table thead th.sorted .sortoptions a.sortremove:focus:after,
  304. table thead th.sorted .sortoptions a.sortremove:hover:after {
  305. color: #447e9b;
  306. }
  307. table thead th.sorted .sortoptions a.sortremove:focus,
  308. table thead th.sorted .sortoptions a.sortremove:hover {
  309. background-position: 0 -14px;
  310. }
  311. table thead th.sorted .sortoptions a.ascending {
  312. background-position: 0 -28px;
  313. }
  314. table thead th.sorted .sortoptions a.ascending:focus,
  315. table thead th.sorted .sortoptions a.ascending:hover {
  316. background-position: 0 -42px;
  317. }
  318. table thead th.sorted .sortoptions a.descending {
  319. top: 1px;
  320. background-position: 0 -56px;
  321. }
  322. table thead th.sorted .sortoptions a.descending:focus,
  323. table thead th.sorted .sortoptions a.descending:hover {
  324. background-position: 0 -70px;
  325. }
  326. /* FORM DEFAULTS */
  327. input, textarea, select, .form-row p, form .button {
  328. margin: 2px 0;
  329. padding: 2px 3px;
  330. vertical-align: middle;
  331. font-family: "Roboto", "Lucida Grande", Verdana, Arial, sans-serif;
  332. font-weight: normal;
  333. font-size: 13px;
  334. }
  335. .form-row div.help {
  336. padding: 2px 3px;
  337. }
  338. textarea {
  339. vertical-align: top;
  340. }
  341. input[type=text], input[type=password], input[type=email], input[type=url],
  342. input[type=number], textarea, select, .vTextField {
  343. border: 1px solid #ccc;
  344. border-radius: 4px;
  345. padding: 5px 6px;
  346. margin-top: 0;
  347. }
  348. input[type=text]:focus, input[type=password]:focus, input[type=email]:focus,
  349. input[type=url]:focus, input[type=number]:focus, textarea:focus, select:focus,
  350. .vTextField:focus {
  351. border-color: #999;
  352. }
  353. select {
  354. height: 30px;
  355. }
  356. select[multiple] {
  357. min-height: 150px;
  358. }
  359. /* FORM BUTTONS */
  360. .button, input[type=submit], input[type=button], .submit-row input, a.button {
  361. background: #79aec8;
  362. padding: 10px 15px;
  363. border: none;
  364. border-radius: 4px;
  365. color: #fff;
  366. cursor: pointer;
  367. }
  368. a.button {
  369. padding: 4px 5px;
  370. }
  371. .button:active, input[type=submit]:active, input[type=button]:active,
  372. .button:focus, input[type=submit]:focus, input[type=button]:focus,
  373. .button:hover, input[type=submit]:hover, input[type=button]:hover {
  374. background: #609ab6;
  375. }
  376. .button[disabled], input[type=submit][disabled], input[type=button][disabled] {
  377. opacity: 0.4;
  378. }
  379. .button.default, input[type=submit].default, .submit-row input.default {
  380. float: right;
  381. border: none;
  382. font-weight: 400;
  383. background: #417690;
  384. }
  385. .button.default:active, input[type=submit].default:active,
  386. .button.default:focus, input[type=submit].default:focus,
  387. .button.default:hover, input[type=submit].default:hover {
  388. background: #205067;
  389. }
  390. .button[disabled].default,
  391. input[type=submit][disabled].default,
  392. input[type=button][disabled].default {
  393. opacity: 0.4;
  394. }
  395. /* MODULES */
  396. .module {
  397. border: none;
  398. margin-bottom: 30px;
  399. background: #fff;
  400. }
  401. .module p, .module ul, .module h3, .module h4, .module dl, .module pre {
  402. padding-left: 10px;
  403. padding-right: 10px;
  404. }
  405. .module blockquote {
  406. margin-left: 12px;
  407. }
  408. .module ul, .module ol {
  409. margin-left: 1.5em;
  410. }
  411. .module h3 {
  412. margin-top: .6em;
  413. }
  414. .module h2, .module caption, .inline-group h2 {
  415. margin: 0;
  416. padding: 8px;
  417. font-weight: 400;
  418. font-size: 13px;
  419. text-align: left;
  420. background: #79aec8;
  421. color: #fff;
  422. }
  423. .module caption,
  424. .inline-group h2 {
  425. font-size: 12px;
  426. letter-spacing: 0.5px;
  427. text-transform: uppercase;
  428. }
  429. .module table {
  430. border-collapse: collapse;
  431. }
  432. /* MESSAGES & ERRORS */
  433. ul.messagelist {
  434. padding: 0;
  435. margin: 0;
  436. }
  437. ul.messagelist li {
  438. display: block;
  439. font-weight: 400;
  440. font-size: 13px;
  441. padding: 10px 10px 10px 65px;
  442. margin: 0 0 10px 0;
  443. background: #dfd url(../img/icon-yes.svg) 40px 12px no-repeat;
  444. background-size: 16px auto;
  445. color: #333;
  446. }
  447. ul.messagelist li.warning {
  448. background: #ffc url(../img/icon-alert.svg) 40px 14px no-repeat;
  449. background-size: 14px auto;
  450. }
  451. ul.messagelist li.error {
  452. background: #ffefef url(../img/icon-no.svg) 40px 12px no-repeat;
  453. background-size: 16px auto;
  454. }
  455. .errornote {
  456. font-size: 14px;
  457. font-weight: 700;
  458. display: block;
  459. padding: 10px 12px;
  460. margin: 0 0 10px 0;
  461. color: #ba2121;
  462. border: 1px solid #ba2121;
  463. border-radius: 4px;
  464. background-color: #fff;
  465. background-position: 5px 12px;
  466. }
  467. ul.errorlist {
  468. margin: 0 0 4px;
  469. padding: 0;
  470. color: #ba2121;
  471. background: #fff;
  472. }
  473. ul.errorlist li {
  474. font-size: 13px;
  475. display: block;
  476. margin-bottom: 4px;
  477. }
  478. ul.errorlist li:first-child {
  479. margin-top: 0;
  480. }
  481. ul.errorlist li a {
  482. color: inherit;
  483. text-decoration: underline;
  484. }
  485. td ul.errorlist {
  486. margin: 0;
  487. padding: 0;
  488. }
  489. td ul.errorlist li {
  490. margin: 0;
  491. }
  492. .form-row.errors {
  493. margin: 0;
  494. border: none;
  495. border-bottom: 1px solid #eee;
  496. background: none;
  497. }
  498. .form-row.errors ul.errorlist li {
  499. padding-left: 0;
  500. }
  501. .errors input, .errors select, .errors textarea {
  502. border: 1px solid #ba2121;
  503. }
  504. div.system-message {
  505. background: #ffc;
  506. margin: 10px;
  507. padding: 6px 8px;
  508. font-size: .8em;
  509. }
  510. div.system-message p.system-message-title {
  511. padding: 4px 5px 4px 25px;
  512. margin: 0;
  513. color: #c11;
  514. background: #ffefef url(../img/icon-no.svg) 5px 5px no-repeat;
  515. }
  516. .description {
  517. font-size: 12px;
  518. padding: 5px 0 0 12px;
  519. }
  520. /* BREADCRUMBS */
  521. div.breadcrumbs {
  522. background: #79aec8;
  523. padding: 10px 40px;
  524. border: none;
  525. font-size: 14px;
  526. color: #c4dce8;
  527. text-align: left;
  528. }
  529. div.breadcrumbs a {
  530. color: #fff;
  531. }
  532. div.breadcrumbs a:focus, div.breadcrumbs a:hover {
  533. color: #c4dce8;
  534. }
  535. /* ACTION ICONS */
  536. .addlink {
  537. padding-left: 16px;
  538. background: url(../img/icon-addlink.svg) 0 1px no-repeat;
  539. }
  540. .changelink, .inlinechangelink {
  541. padding-left: 16px;
  542. background: url(../img/icon-changelink.svg) 0 1px no-repeat;
  543. }
  544. .deletelink {
  545. padding-left: 16px;
  546. background: url(../img/icon-deletelink.svg) 0 1px no-repeat;
  547. }
  548. a.deletelink:link, a.deletelink:visited {
  549. color: #CC3434;
  550. }
  551. a.deletelink:focus, a.deletelink:hover {
  552. color: #993333;
  553. text-decoration: none;
  554. }
  555. /* OBJECT TOOLS */
  556. .object-tools {
  557. font-size: 10px;
  558. font-weight: bold;
  559. padding-left: 0;
  560. float: right;
  561. position: relative;
  562. margin-top: -48px;
  563. }
  564. .form-row .object-tools {
  565. margin-top: 5px;
  566. margin-bottom: 5px;
  567. float: none;
  568. height: 2em;
  569. padding-left: 3.5em;
  570. }
  571. .object-tools li {
  572. display: block;
  573. float: left;
  574. margin-left: 5px;
  575. height: 16px;
  576. }
  577. .object-tools a {
  578. border-radius: 15px;
  579. }
  580. .object-tools a:link, .object-tools a:visited {
  581. display: block;
  582. float: left;
  583. padding: 3px 12px;
  584. background: #999;
  585. font-weight: 400;
  586. font-size: 11px;
  587. text-transform: uppercase;
  588. letter-spacing: 0.5px;
  589. color: #fff;
  590. }
  591. .object-tools a:focus, .object-tools a:hover {
  592. background-color: #417690;
  593. }
  594. .object-tools a:focus{
  595. text-decoration: none;
  596. }
  597. .object-tools a.viewsitelink, .object-tools a.golink,.object-tools a.addlink {
  598. background-repeat: no-repeat;
  599. background-position: right 7px center;
  600. padding-right: 26px;
  601. }
  602. .object-tools a.viewsitelink, .object-tools a.golink {
  603. background-image: url(../img/tooltag-arrowright.svg);
  604. }
  605. .object-tools a.addlink {
  606. background-image: url(../img/tooltag-add.svg);
  607. }
  608. /* OBJECT HISTORY */
  609. table#change-history {
  610. width: 100%;
  611. }
  612. table#change-history tbody th {
  613. width: 16em;
  614. }
  615. /* PAGE STRUCTURE */
  616. #container {
  617. position: relative;
  618. width: 100%;
  619. min-width: 980px;
  620. padding: 0;
  621. }
  622. #content {
  623. padding: 20px 40px;
  624. }
  625. .dashboard #content {
  626. width: 600px;
  627. }
  628. #content-main {
  629. float: left;
  630. width: 100%;
  631. }
  632. #content-related {
  633. float: right;
  634. width: 260px;
  635. position: relative;
  636. margin-right: -300px;
  637. }
  638. #footer {
  639. clear: both;
  640. padding: 10px;
  641. }
  642. /* COLUMN TYPES */
  643. .colMS {
  644. margin-right: 300px;
  645. }
  646. .colSM {
  647. margin-left: 300px;
  648. }
  649. .colSM #content-related {
  650. float: left;
  651. margin-right: 0;
  652. margin-left: -300px;
  653. }
  654. .colSM #content-main {
  655. float: right;
  656. }
  657. .popup .colM {
  658. width: auto;
  659. }
  660. /* HEADER */
  661. #header {
  662. width: auto;
  663. height: 40px;
  664. padding: 10px 40px;
  665. background: #417690;
  666. line-height: 40px;
  667. color: #ffc;
  668. overflow: hidden;
  669. }
  670. #header a:link, #header a:visited {
  671. color: #fff;
  672. }
  673. #header a:focus , #header a:hover {
  674. text-decoration: underline;
  675. }
  676. #branding {
  677. float: left;
  678. }
  679. #branding h1 {
  680. padding: 0;
  681. margin: 0 20px 0 0;
  682. font-weight: 300;
  683. font-size: 24px;
  684. color: #f5dd5d;
  685. }
  686. #branding h1, #branding h1 a:link, #branding h1 a:visited {
  687. color: #f5dd5d;
  688. }
  689. #branding h2 {
  690. padding: 0 10px;
  691. font-size: 14px;
  692. margin: -8px 0 8px 0;
  693. font-weight: normal;
  694. color: #ffc;
  695. }
  696. #branding a:hover {
  697. text-decoration: none;
  698. }
  699. #user-tools {
  700. float: right;
  701. padding: 0;
  702. margin: 0 0 0 20px;
  703. font-weight: 300;
  704. font-size: 11px;
  705. letter-spacing: 0.5px;
  706. text-transform: uppercase;
  707. text-align: right;
  708. }
  709. #user-tools a {
  710. border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  711. }
  712. #user-tools a:focus, #user-tools a:hover {
  713. text-decoration: none;
  714. border-bottom-color: #79aec8;
  715. color: #79aec8;
  716. }
  717. /* SIDEBAR */
  718. #content-related {
  719. background: #f8f8f8;
  720. }
  721. #content-related .module {
  722. background: none;
  723. }
  724. #content-related h3 {
  725. font-size: 14px;
  726. color: #666;
  727. padding: 0 16px;
  728. margin: 0 0 16px;
  729. }
  730. #content-related h4 {
  731. font-size: 13px;
  732. }
  733. #content-related p {
  734. padding-left: 16px;
  735. padding-right: 16px;
  736. }
  737. #content-related .actionlist {
  738. padding: 0;
  739. margin: 16px;
  740. }
  741. #content-related .actionlist li {
  742. line-height: 1.2;
  743. margin-bottom: 10px;
  744. padding-left: 18px;
  745. }
  746. #content-related .module h2 {
  747. background: none;
  748. padding: 16px;
  749. margin-bottom: 16px;
  750. border-bottom: 1px solid #eaeaea;
  751. font-size: 18px;
  752. color: #333;
  753. }
  754. .delete-confirmation form input[type="submit"] {
  755. background: #ba2121;
  756. border-radius: 4px;
  757. padding: 10px 15px;
  758. color: #fff;
  759. }
  760. .delete-confirmation form input[type="submit"]:active,
  761. .delete-confirmation form input[type="submit"]:focus,
  762. .delete-confirmation form input[type="submit"]:hover {
  763. background: #a41515;
  764. }
  765. .delete-confirmation form .cancel-link {
  766. display: inline-block;
  767. vertical-align: middle;
  768. height: 15px;
  769. line-height: 15px;
  770. background: #ddd;
  771. border-radius: 4px;
  772. padding: 10px 15px;
  773. color: #333;
  774. margin: 0 0 0 10px;
  775. }
  776. .delete-confirmation form .cancel-link:active,
  777. .delete-confirmation form .cancel-link:focus,
  778. .delete-confirmation form .cancel-link:hover {
  779. background: #ccc;
  780. }
  781. /* POPUP */
  782. .popup #content {
  783. padding: 20px;
  784. }
  785. .popup #container {
  786. min-width: 0;
  787. }
  788. .popup #header {
  789. padding: 10px 20px;
  790. }