| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- /*
- Default style
- */
- * {
- box-sizing: border-box;
- }
-
- html {
- height: 100%;
- font-size: 14px;
- }
-
- body {
- font-family: var(--font-family);
- color: var(--text-color);
- background-color: var(--surface-ground);
- margin: 0;
- padding: 0;
- min-height: 100%;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
-
- .layout-topbar-menu-tooltip.p-tooltip {
- position: absolute;
- z-index: 997;
- display: none;
- padding: 0.25em 0.5rem;
- max-width: 12.5rem;
- }
-
- /*
- Typography
- */
- a {
- text-decoration: none;
- color: var(--primary-color);
- }
-
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- margin: 0.5rem 0 0.5rem 0;
- font-family: inherit;
- font-weight: 500;
- line-height: 1.2;
- color: inherit;
-
- &:first-child {
- margin-top: 0;
- }
- }
-
- h1 {
- font-size: 2.5rem;
- }
-
- h2 {
- font-size: 2rem;
- }
-
- h3 {
- font-size: 1.75rem;
- }
-
- h4 {
- font-size: 1.5rem;
- }
-
- h5 {
- font-size: 1.25rem;
- }
-
- h6 {
- font-size: 1rem;
- }
-
- mark {
- background: #fff8e1;
- padding: 0.25rem 0.4rem;
- border-radius: 12px;
- font-family: monospace;
- }
-
- blockquote {
- margin: 1rem 0;
- padding: 0 2rem;
- border-left: 4px solid #90a4ae;
- }
-
- hr {
- border-top: solid var(--surface-border);
- border-width: 1px 0 0 0;
- margin: 1rem 0;
- }
-
- p {
- margin: 0 0 1rem 0;
- line-height: 1.5;
-
- &:last-child {
- margin-bottom: 0;
- }
- }
-
- /*
- Component
- */
- .p-message {
- margin-top: 0px;
- }
-
- .p-component-overlay {
- z-index: 997;
- }
|