| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- /* Base
- ========================================================================== */
- html {
- height: 100%;
- box-sizing: border-box;
- font-family: sans-serif;
- scroll-behavior: smooth;
- }
- *,
- *::before,
- *::after {
- box-sizing: inherit;
- }
- :focus {
- outline: none;
- }
- [x-cloak] {
- display: none !important;
- }
- html,
- input,
- textarea,
- select,
- button {
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- body {
- font-family: var(--font-family);
- font-size: 0.85rem;
- line-height: 1.5;
- height: 100%;
- color: var(--color-text);
- background-color: var(--color-background);
- }
- a {
- color: var(--color-text-link);
- text-decoration: none;
- &:hover {
- color: var(--color-text-link-hover);
- }
- }
- p,
- pre {
- margin: 0;
- }
- h1,
- .u-text-H1,
- h2,
- .u-text-H2,
- h3,
- .u-text-H3 {
- font-weight: 500;
- margin: 0;
- }
- h1,
- .u-text-H1 {
- font-size: 1.4rem;
- }
- h2,
- .u-text-H2 {
- font-size: 1.2rem;
- }
- h3,
- .u-text-H3 {
- font-size: 1rem;
- }
- ol,
- ul {
- list-style: none;
- margin: 0;
- padding: 0;
- }
- button {
- cursor: pointer;
- line-height: inherit;
- }
- img {
- vertical-align: middle;
- }
- table {
- width: 100%;
- border-collapse: collapse;
- border-spacing: 0;
- }
- textarea {
- resize: vertical;
- min-height: 60px;
- }
- fieldset {
- border: 0;
- margin: 0;
- padding: 0;
- }
- dialog {
- position: fixed;
- padding: 0;
- &::backdrop {
- background-color: rgb(0 0 0 / 60%);
- }
- }
- summary {
- list-style: none;
- &::-webkit-details-marker {
- display: none;
- }
- }
|