elements.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. /*
  2. * DO NOT EDIT THIS FILE.
  3. * See the following change record for more information,
  4. * https://www.drupal.org/node/2815083
  5. * @preserve
  6. */
  7. /**
  8. * Generic elements.
  9. */
  10. html {
  11. font-family: BlinkMacSystemFont
  12. ,
  13. -apple-system
  14. ,
  15. "Segoe UI"
  16. ,
  17. Roboto
  18. ,
  19. Oxygen-Sans
  20. ,
  21. Ubuntu
  22. ,
  23. Cantarell
  24. ,
  25. "Helvetica Neue"
  26. ,
  27. sans-serif;
  28. font-size: 100%;
  29. font-weight: normal;
  30. font-style: normal;
  31. line-height: 1.5;
  32. }
  33. body {
  34. color: #222330;
  35. background: #fff;
  36. }
  37. a,
  38. .link {
  39. color: #003cc5;
  40. }
  41. a:hover,
  42. a:focus,
  43. .link:hover,
  44. .link:focus {
  45. text-decoration: none;
  46. outline: 0;
  47. }
  48. a:hover,
  49. .link:hover {
  50. color: #0036b1;
  51. }
  52. a:active,
  53. .link:active {
  54. color: #00339a;
  55. }
  56. hr {
  57. height: 1px;
  58. margin: 1rem 0;
  59. padding: 0;
  60. border: none;
  61. background: rgba(142, 146, 156, 0.5);
  62. }
  63. summary {
  64. font-weight: bold;
  65. }
  66. /**
  67. * Reusable heading classes are included to help modules change the styling of
  68. * headings on a page without affecting accessibility.
  69. */
  70. h1,
  71. .heading-a {
  72. margin: 1rem 0 0.75rem;
  73. font-size: 2.027rem;
  74. font-weight: bold;
  75. line-height: 1.3;
  76. }
  77. h2,
  78. .heading-b {
  79. margin: 1rem 0 0.75rem;
  80. font-size: 1.802rem;
  81. font-weight: bold;
  82. line-height: 1.3;
  83. }
  84. h3,
  85. .heading-c {
  86. margin: 1rem 0 0.75rem;
  87. font-size: 1.602rem;
  88. font-weight: bold;
  89. line-height: 1.3;
  90. }
  91. h4,
  92. .heading-d {
  93. margin: 1rem 0 0.75rem;
  94. font-size: 1.424rem;
  95. font-weight: bold;
  96. line-height: 1.3;
  97. }
  98. h5,
  99. .heading-e {
  100. margin: 1rem 0 0.75rem;
  101. font-size: 1.266rem;
  102. font-weight: bold;
  103. line-height: 1.3;
  104. }
  105. h6,
  106. .heading-f {
  107. margin: 1rem 0 0.75rem;
  108. font-size: 1.125rem;
  109. font-weight: bold;
  110. line-height: 1.3;
  111. }
  112. p {
  113. margin: 1em 0;
  114. }
  115. dl {
  116. margin: 0 0 20px;
  117. }
  118. dl dd,
  119. dl dl {
  120. margin-bottom: 10px;
  121. margin-left: 20px; /* LTR */
  122. }
  123. [dir="rtl"] dl dd,
  124. [dir="rtl"] dl dl {
  125. margin-right: 20px;
  126. }
  127. blockquote {
  128. margin: 1em 40px;
  129. }
  130. address {
  131. font-style: italic;
  132. }
  133. u,
  134. ins {
  135. text-decoration: none;
  136. }
  137. s,
  138. strike,
  139. del {
  140. text-decoration: line-through;
  141. }
  142. big {
  143. font-size: larger;
  144. }
  145. small {
  146. font-size: smaller;
  147. }
  148. sub {
  149. vertical-align: sub;
  150. font-size: smaller;
  151. line-height: normal;
  152. }
  153. sup {
  154. vertical-align: super;
  155. font-size: smaller;
  156. line-height: normal;
  157. }
  158. abbr,
  159. acronym {
  160. border-bottom: dotted 1px;
  161. }
  162. ul {
  163. margin: 0.25em 0 0.25em 1.5em; /* LTR */
  164. padding-left: 0;
  165. list-style-type: disc;
  166. list-style-image: none;
  167. }
  168. [dir="rtl"] ul {
  169. margin-right: 1.5em;
  170. margin-left: 0;
  171. padding-right: 0;
  172. }
  173. /* This is required to win over specificity of [dir="rtl"] ul */
  174. [dir="rtl"] .messages__list {
  175. margin-right: 0;
  176. }
  177. ol {
  178. margin: 0.25em 0 0.25em 2em; /* LTR */
  179. padding: 0;
  180. list-style-type: decimal;
  181. }
  182. [dir="rtl"] ol {
  183. margin-right: 2em;
  184. margin-left: 0;
  185. }
  186. /**
  187. * Fix duplicate border caused by normalize.css adding border-bottom without
  188. * removing the text-decoration.
  189. */
  190. abbr[title] {
  191. text-decoration: none;
  192. }
  193. code {
  194. margin: 0.5em 0;
  195. }
  196. pre {
  197. margin: 0.5em 0;
  198. white-space: pre-wrap;
  199. }
  200. details {
  201. line-height: 1.295em;
  202. }
  203. details summary {
  204. padding: 0.95em 1.45em;
  205. }
  206. details summary:focus {
  207. outline: none;
  208. }
  209. img {
  210. max-width: 100%;
  211. height: auto;
  212. }
  213. /**
  214. * Default focus styles for focused elements.
  215. *
  216. * This is applied globally to all interactive elements except Toolbar and
  217. * Settings Tray since they have their own styles.
  218. *
  219. * @todo https://www.drupal.org/project/claro/issues/3048785 :focus selector is
  220. * active for non-interactive elements in Internet Explorer 11.
  221. */
  222. .page-wrapper *:focus,
  223. .ui-dialog *:focus {
  224. outline: 2px
  225. dotted
  226. transparent;
  227. box-shadow: 0
  228. 0
  229. 0
  230. 2px
  231. #fff
  232. ,
  233. 0
  234. 0
  235. 0
  236. 5px
  237. #26a769;
  238. }