Compare commits
4 commits
608444f59f
...
b0cd3ff179
Author | SHA1 | Date | |
---|---|---|---|
b0cd3ff179 | |||
e8ee385333 | |||
aee34ac639 | |||
8e7bfb96a6 |
1 changed files with 24 additions and 12 deletions
|
@ -1,9 +1,16 @@
|
||||||
@import url('https://rsms.me/inter/inter.css');
|
@import url('https://rsms.me/inter/inter.css');
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--gray-100: #161616;
|
||||||
|
--gray-90: #262626;
|
||||||
|
--gray-90-hover: #333333;
|
||||||
|
--gray-70: #525252;
|
||||||
|
--gray-10: #f4f4f4;
|
||||||
|
--green: #8ac159;
|
||||||
|
}
|
||||||
|
|
||||||
html {
|
html {
|
||||||
color: #ffffff;
|
background: var(--gray-100);
|
||||||
font-family: Inter var, sans-serif;
|
|
||||||
background: #161616; /* Gray 100 */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
*, *::before, *::after {
|
*, *::before, *::after {
|
||||||
|
@ -11,10 +18,13 @@ html {
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
font-family: Inter var, sans-serif;
|
||||||
|
color: var(--gray-10);
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
line-height: 1.375rem;
|
line-height: 1.375rem;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
margin: 24px;
|
margin: 24px;
|
||||||
|
font-feature-settings: 'ss01', 'ss03';
|
||||||
}
|
}
|
||||||
body > div {
|
body > div {
|
||||||
margin: 24px;
|
margin: 24px;
|
||||||
|
@ -31,11 +41,11 @@ h1,h2,h3,h4,h5,h6 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
h1 {
|
h1 {
|
||||||
/* color: #8bc34a; */
|
|
||||||
font-size: 3.375rem;
|
font-size: 3.375rem;
|
||||||
line-height: 4rem;
|
line-height: 4rem;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
margin: 24px;
|
margin: 24px;
|
||||||
|
font-feature-settings: 'ss01', 'ss02', 'ss03', 'cv11';
|
||||||
}
|
}
|
||||||
h1 strong {
|
h1 strong {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
|
@ -43,8 +53,9 @@ h1 strong {
|
||||||
h1 img {
|
h1 img {
|
||||||
height: 4rem;
|
height: 4rem;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
border: 5px solid white;
|
/*border: 5px solid white;*/
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
h2 {
|
h2 {
|
||||||
font-size: 2.625rem;
|
font-size: 2.625rem;
|
||||||
|
@ -83,8 +94,8 @@ a {
|
||||||
padding: 12px 24px;
|
padding: 12px 24px;
|
||||||
margin: 12px;
|
margin: 12px;
|
||||||
|
|
||||||
color: #f4f4f4;
|
color: white;
|
||||||
background: #262626; /* Gray 90 */
|
background: var(--gray-90);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
||||||
border: 2px solid transparent;
|
border: 2px solid transparent;
|
||||||
|
@ -94,10 +105,10 @@ a {
|
||||||
transition-timing-function: cubic-bezier(0.2, 0, 0.38, 0.9);
|
transition-timing-function: cubic-bezier(0.2, 0, 0.38, 0.9);
|
||||||
}
|
}
|
||||||
a:hover {
|
a:hover {
|
||||||
background: #333333; /* Gray 90 Hover */
|
background: var(--gray-90-hover);
|
||||||
}
|
}
|
||||||
a:active {
|
a:active {
|
||||||
background: #525252; /* Gray 70 */
|
background: var(--gray-70);
|
||||||
}
|
}
|
||||||
a:focus {
|
a:focus {
|
||||||
border: 2px solid white;
|
border: 2px solid white;
|
||||||
|
@ -118,8 +129,9 @@ ul li {
|
||||||
}
|
}
|
||||||
|
|
||||||
sup {
|
sup {
|
||||||
vertical-align: top;
|
vertical-align: baseline;
|
||||||
line-height: 1em;
|
font: inherit;
|
||||||
|
font-feature-settings: 'ss01', 'ss03', 'sups';
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
|
@ -130,7 +142,7 @@ footer {
|
||||||
font-size: .875rem;
|
font-size: .875rem;
|
||||||
line-height: 1.125rem;
|
line-height: 1.125rem;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
background: #262626;
|
background: var(--gray-90);
|
||||||
}
|
}
|
||||||
|
|
||||||
footer p {
|
footer p {
|
||||||
|
|
Reference in a new issue