design tweaks

This commit is contained in:
Nazar Kanaev
2020-07-26 22:37:58 +01:00
parent d07a5fd173
commit 22c463fd77
4 changed files with 162 additions and 129 deletions

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-book"><path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"></path><path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"></path></svg>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-book-open"><path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"></path><path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"></path></svg>

Before

Width:  |  Height:  |  Size: 345 B

After

Width:  |  Height:  |  Size: 339 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>

After

Width:  |  Height:  |  Size: 308 B

View File

@@ -10,6 +10,17 @@ body {
font-size: 15px !important;
}
.wrapper {
max-width: 1368px;
margin: 0 auto;
}
/* bootstrap customizations */
.btn-link {
color: inherit;
}
.form-control {
box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.07);
}
@@ -32,72 +43,6 @@ select.form-control:not([multiple]):not([size]) {
box-shadow: none !important;
}
.wrapper {
max-width: 1368px;
margin: 0 auto;
}
.icon {
height: 1rem;
width: 1rem;
}
.icon > svg {
width: 1rem;
height: 1rem;
display: block;
}
.feed-icon {
width: 16px;
height: 16px;
min-width: 16px;
margin-left: -18px !important;
}
.counter {
max-width: 100px;
}
.menu-item {
padding: .375rem .5rem;
}
.menu-item, .feed-item {
border-radius: 4px;
}
.nav-select {
position: relative;
display: block;
margin-bottom: 0;
}
.nav-select input {
opacity: 0;
position: absolute;
z-index: -1;
top: 0; left: 0;
}
.nav-select + .nav-select {
margin-top: .25rem;
}
.menu-item:hover, .feed-item:hover {
background-color: #f8f9fa;
cursor: pointer;
}
.feed-item:active, .nav-select input:checked + .menu-item {
background-color: var(--color-primary);
color: white;
}
.expanded {
transform: rotate(90deg);
}
.dropdown-header {
cursor: default;
}
@@ -155,6 +100,66 @@ select.form-control:not([multiple]):not([size]) {
background-color: transparent;
}
/* custom elements */
.icon {
height: 1rem;
width: 1rem;
}
.icon > svg {
width: 1rem;
height: 1rem;
display: block;
}
.feed-icon {
width: 16px;
height: 16px;
min-width: 16px;
margin-left: -18px !important;
}
.counter {
max-width: 100px;
}
.selectgroup {
position: relative;
display: block;
margin: 0;
}
.selectgroup input {
opacity: 0;
position: absolute;
z-index: -1;
top: 0; left: 0;
}
.selectgroup + .selectgroup {
margin-top: .25rem;
}
.selectgroup .selectgroup-label {
padding: .375rem .5rem;
border-radius: 4px;
}
.selectgroup > .selectgroup-label:hover {
background-color: #f8f9fa;
cursor: pointer;
}
.selectgroup input:checked + .selectgroup-label {
background-color: var(--color-primary);
color: white;
}
.expanded {
transform: rotate(90deg);
}
@keyframes loading {
0% {
transform: rotate(0)
@@ -190,10 +195,6 @@ select.form-control:not([multiple]):not([size]) {
z-index: 1;
}
.btn-link {
color: inherit;
}
.btn-default {
border: 1px solid #ced4da;
border-radius: .25rem;
@@ -206,9 +207,47 @@ select.form-control:not([multiple]):not([size]) {
box-shadow: none;
}
.toolbar {
height: 2rem !important;
min-height: 2rem !important;
}
.toolbar-item {
display: inline-block;
background-color: transparent;
text-decoration: none;
user-select: none;
border: 1px solid transparent;
padding: .25rem .5rem;
font-size: 1rem;
line-height: 2;
border-radius: .25rem;
color: inherit;
text-align: center;
vertical-align: middle;
border-radius: 3px;
}
.toolbar-item:hover {
background-color: #f3f3f3;
cursor: pointer;
color: inherit;
}
.toolbar-item:focus {
outline: none;
}
.toolbar-item:disabled {
opacity: 0.4;
cursor: not-allowed;
}
/* content */
.content {
font-size: 1.2rem;
line-height: 1.6;
line-height: 1.5;
}
.content a:hover {
@@ -219,8 +258,3 @@ select.form-control:not([multiple]):not([size]) {
border-left: 3px solid #22262a;
padding-left: 1rem;
}
.content img {
width: 100%;
height: auto;
}