1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-07-30 10:39:43 +02:00

Main elements created (#4)

This commit is contained in:
Peter Savchenko 2018-09-18 13:10:44 +03:00 committed by GitHub
parent 248558a11f
commit 4326cb22ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 172 additions and 13 deletions

View file

@ -0,0 +1,28 @@
.docs-aside {
font-size: 15px;
color: var(--color-text-second);
a {
text-decoration: none;
}
&__section {
margin-bottom: 30px;
&-title {
margin-bottom: 15px;
color: var(--color-link-active);
}
&-list {
padding-left: 0;
list-style: none;
a {
display: inline-block;
color: inherit;
padding: 8px 0;
}
}
}
}

View file

@ -0,0 +1,31 @@
.docs-header {
font-size: 15.8px;
border-bottom: 1px solid var(--color-line-gray);
line-height: 50px;
display: flex;
padding: 0 var(--layout-padding-horisontal);
a {
text-decoration: none;
color: inherit;
display: inline-block;
&:hover {
color: var(--color-link-active);
}
}
&__logo {
font-weight: bold;
}
&__menu {
display: flex;
margin: 0 0 0 auto;
li {
list-style: none;
margin-left: 20px;
}
}
}