_page.scss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. //
  2. // Page
  3. //
  4. ._page {
  5. position: relative;
  6. min-height: calc(100% - 1.25rem);
  7. &._page-error { position: static; }
  8. > h1 { @extend ._lined-heading; }
  9. > h1:first-child { margin-top: 0; }
  10. a[href^="http:"], a[href^="https:"] { @extend %external-link; }
  11. a:not([href]) {
  12. color: inherit;
  13. text-decoration: none;
  14. }
  15. iframe {
  16. display: block;
  17. max-width: 100%;
  18. margin-bottom: 1em;
  19. padding: 1px;
  20. border: 1px dotted var(--boxBorder);
  21. border-radius: 3px;
  22. @extend %border-box;
  23. }
  24. }
  25. //
  26. // Links
  27. //
  28. ._links {
  29. position: absolute;
  30. top: 0;
  31. right: 0;
  32. margin: 0;
  33. line-height: 2em;
  34. text-align: right;
  35. + h1 { margin-top: 0; }
  36. @media (max-width: 1023px) { display: none; }
  37. }
  38. ._links-link {
  39. display: inline-block;
  40. vertical-align: top;
  41. padding: 0 .5rem;
  42. background: var(--contentBackground);
  43. @extend %internal-link;
  44. & + & { margin-left: .75rem; }
  45. &:first-child { padding-left: 1rem; }
  46. &:last-child { padding-right: 0; }
  47. }
  48. //
  49. // Attribution box
  50. //
  51. ._attribution {
  52. clear: both;
  53. margin: 2rem 0 1.5rem;
  54. font-size: .75rem;
  55. color: var(--textColorLight);
  56. text-align: center;
  57. -webkit-font-smoothing: subpixel-antialiased;
  58. & + & { margin-top: 1.5rem; }
  59. & + & > ._attribution-link { display: none; }
  60. }
  61. ._attribution-p {
  62. display: inline-block;
  63. margin: 0;
  64. padding: .25rem .75rem;
  65. background: var(--labelBackground);
  66. border-radius: 3px;
  67. }
  68. ._attribution-link { @extend %internal-link; }
  69. //
  70. // Entry list
  71. //
  72. ._entry-list {
  73. padding-left: 1em;
  74. list-style: none;
  75. }