Compare commits

...

2 Commits

Author SHA1 Message Date
Alexander Popov d9ba9947fe fix line height 2022-10-12 22:50:21 +03:00
Alexander Popov 13464c12e4 change font weight 2022-10-12 22:46:11 +03:00
3 changed files with 19 additions and 8 deletions

View File

@ -4,6 +4,10 @@ html, body {
min-height: 100vh; min-height: 100vh;
} }
p {
line-height: 1.5rem;
}
/* layout */ /* layout */
.header { .header {
border-bottom: 1px solid var(--code-bg-color); border-bottom: 1px solid var(--code-bg-color);
@ -17,7 +21,7 @@ html, body {
/* logo */ /* logo */
.logo { .logo {
font-weight: 900; font-weight: 700;
color: var(--primary-color); color: var(--primary-color);
font-size: 1.4em; font-size: 1.4em;
grid-column: 2; grid-column: 2;
@ -49,7 +53,7 @@ html, body {
.doc__nav { .doc__nav {
flex-basis: 20%; flex-basis: 20%;
font-weight: 200; font-weight: 400;
} }
.doc__nav ul { .doc__nav ul {

View File

@ -22,7 +22,7 @@ html, body {
} }
p { p {
font-weight: 300; font-weight: 400;
color: #4A4A4A; color: #4A4A4A;
} }
@ -70,7 +70,7 @@ hr {
.tab { .tab {
display: inline-block; display: inline-block;
padding: 0.3rem 0.5rem; padding: 0.3rem 0.5rem;
font-weight: 200; font-weight: 400;
cursor: pointer; cursor: pointer;
} }
@ -246,7 +246,7 @@ table {
table td, table th { table td, table th {
border: 1px solid var(--code-bg-color); border: 1px solid var(--code-bg-color);
padding: 0.8rem; padding: 0.8rem;
font-weight: 300; font-weight: 400;
} }
table th { table th {
@ -258,7 +258,7 @@ table th {
table td:first-child { table td:first-child {
background-color: var(--bg-color); background-color: var(--bg-color);
font-weight: 600; font-weight: 700;
} }
@media screen and (max-width: 600px) { @media screen and (max-width: 600px) {

View File

@ -12,7 +12,7 @@ nav {
} }
.hero__title { .hero__title {
font-weight: 900; font-weight: 700;
color: var(--primary-color); color: var(--primary-color);
} }
@ -38,6 +38,12 @@ nav {
padding-top: 1rem; padding-top: 1rem;
} }
/* changelog section */
.changelog__detail li {
line-height: 1.5rem;
}
/* feature section */ /* feature section */
.feature { .feature {
display: flex; display: flex;
@ -55,6 +61,7 @@ nav {
.feature__item p { .feature__item p {
margin-top: 0.5rem; margin-top: 0.5rem;
line-height: 1.5rem;
} }
/* keybinding section */ /* keybinding section */
@ -137,7 +144,7 @@ nav {
.changelog__meta small { .changelog__meta small {
color: var(--primary-color-light); color: var(--primary-color-light);
font-weight: 200; font-weight: 400;
letter-spacing: 1px; letter-spacing: 1px;
} }