Advertisement
JustinzocktYT

style.css

Feb 19th, 2023
790
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.44 KB | Source Code | 0 0
  1. :root {
  2.   --dl-color-gray-500: #595959;
  3.   --dl-color-gray-700: #999999;
  4.   --dl-color-gray-900: #D9D9D9;
  5.   --dl-size-size-large: 144px;
  6.   --dl-size-size-small: 48px;
  7.   --dl-color-danger-300: #A22020;
  8.   --dl-color-danger-500: #BF2626;
  9.   --dl-color-danger-700: #E14747;
  10.   --dl-color-gray-black: #000000;
  11.   --dl-color-gray-white: #FFFFFF;
  12.   --dl-size-size-medium: 96px;
  13.   --dl-size-size-xlarge: 192px;
  14.   --dl-size-size-xsmall: 16px;
  15.   --dl-space-space-unit: 16px;
  16.   --dl-color-primary-100: #003EB3;
  17.   --dl-color-primary-300: #0074F0;
  18.   --dl-color-primary-500: #14A9FF;
  19.   --dl-color-primary-700: #85DCFF;
  20.   --dl-color-success-300: #199033;
  21.   --dl-color-success-500: #32A94C;
  22.   --dl-color-success-700: #4CC366;
  23.   --dl-size-size-xxlarge: 288px;
  24.   --dl-size-size-maxwidth: 1400px;
  25.   --dl-radius-radius-round: 50%;
  26.   --dl-space-space-halfunit: 8px;
  27.   --dl-space-space-sixunits: 96px;
  28.   --dl-space-space-twounits: 32px;
  29.   --dl-radius-radius-radius2: 2px;
  30.   --dl-radius-radius-radius4: 4px;
  31.   --dl-radius-radius-radius8: 8px;
  32.   --dl-space-space-fiveunits: 80px;
  33.   --dl-space-space-fourunits: 64px;
  34.   --dl-space-space-threeunits: 48px;
  35.   --dl-space-space-oneandhalfunits: 24px;
  36. }
  37. .button {
  38.   color: var(--dl-color-gray-black);
  39.   display: inline-block;
  40.   padding: 0.5rem 1rem;
  41.   border-color: var(--dl-color-gray-black);
  42.   border-width: 1px;
  43.   border-radius: 4px;
  44.   background-color: var(--dl-color-gray-white);
  45. }
  46. .input {
  47.   color: var(--dl-color-gray-black);
  48.   cursor: auto;
  49.   padding: 0.5rem 1rem;
  50.   border-color: var(--dl-color-gray-black);
  51.   border-width: 1px;
  52.   border-radius: 4px;
  53.   background-color: var(--dl-color-gray-white);
  54. }
  55. .textarea {
  56.   color: var(--dl-color-gray-black);
  57.   cursor: auto;
  58.   padding: 0.5rem;
  59.   border-color: var(--dl-color-gray-black);
  60.   border-width: 1px;
  61.   border-radius: 4px;
  62.   background-color: var(--dl-color-gray-white);
  63. }
  64. .list {
  65.   width: 100%;
  66.   margin: 1em 0px 1em 0px;
  67.   display: block;
  68.   padding: 0px 0px 0px 1.5rem;
  69.   list-style-type: none;
  70.   list-style-position: outside;
  71. }
  72. .list-item {
  73.   display: list-item;
  74. }
  75. .teleport-show {
  76.   display: flex !important;
  77.   transform: none !important;
  78. }
  79. .Content {
  80.   font-size: 16px;
  81.   font-family: Inter;
  82.   font-weight: 400;
  83.   line-height: 1.15;
  84.   text-transform: none;
  85.   text-decoration: none;
  86. }
  87. .Heading {
  88.   font-size: 32px;
  89.   font-family: Inter;
  90.   font-weight: 700;
  91.   line-height: 1.15;
  92.   text-transform: none;
  93.   text-decoration: none;
  94. }
  95.  
Tags: CSS
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement