1234567891011121314151617181920212223242526272829303132333435 |
- /*
- * Copyright 2021-2024 Avaiga Private Limited
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
- * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations under the License.
- */
- /**************************************************************
- TYPOGRAPHY VARIABLES
- ***************************************************************/
- :root {
- /* Headings */
- --font-size-h1: 2.5rem;
- --font-size-h2: 2rem;
- --font-size-h3: 1.75rem;
- --font-size-h4: 1.5rem;
- --font-size-h5: 1.25rem;
- --font-size-h6: 1rem;
- --font-weight-heading: bold;
- /* Body text */
- --font-size-body: 1rem;
- --font-size-small: 0.875rem;
- --font-size-caption: 0.75rem;
- }
|