mirror of https://github.com/mkrhere/pw2
Muthu Kumar
4 years ago
4 changed files with 116 additions and 76 deletions
@ -1,13 +1,52 @@ |
|||
:root { |
|||
--primary-color: #ff9494; |
|||
--primary-color: #ff5555; |
|||
--text-color: #d3cfc9; |
|||
font-weight: 500; |
|||
font-size: 16px; |
|||
} |
|||
|
|||
* { |
|||
box-sizing: border-box; |
|||
} |
|||
|
|||
body { |
|||
margin: 0; |
|||
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", |
|||
"Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", |
|||
sans-serif; |
|||
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", |
|||
"Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; |
|||
-webkit-font-smoothing: antialiased; |
|||
-moz-osx-font-smoothing: grayscale; |
|||
color: #fff; |
|||
} |
|||
|
|||
code { |
|||
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", |
|||
monospace; |
|||
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; |
|||
} |
|||
|
|||
h1, |
|||
h2, |
|||
h3, |
|||
h4, |
|||
h5, |
|||
h6, |
|||
p { |
|||
margin: 0; |
|||
line-height: 1.5em; |
|||
} |
|||
|
|||
h1, |
|||
h2, |
|||
h3, |
|||
h4, |
|||
h5, |
|||
h6 { |
|||
color: var(--primary-color); |
|||
} |
|||
|
|||
h1 { |
|||
font-size: 6rem; |
|||
} |
|||
|
|||
h2 { |
|||
font-size: 3rem; |
|||
} |
|||
|
Loading…
Reference in new issue