at the end of the day, it was inevitable
This commit is contained in:
@@ -0,0 +1,438 @@
|
||||
@import url('https://fonts.googleapis.com/css?family=Lato');
|
||||
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300i,400,400i,700,700i&subset=cyrillic,cyrillic-ext,greek,greek-ext,latin-ext,vietnamese');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;700;800&display=swap');
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
/* margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
||||
"Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
|
||||
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
font-size: 0.88rem;
|
||||
font-weight: 400;
|
||||
line-height: 1.5;
|
||||
color: #495057;
|
||||
text-align: left;
|
||||
background-color: #fff; */
|
||||
|
||||
& p,
|
||||
label {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
|
||||
'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
|
||||
'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
||||
font-size: 0.88rem;
|
||||
font-weight: 400;
|
||||
line-height: 1.5;
|
||||
}
|
||||
}
|
||||
|
||||
[dir='rtl'] body {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
$font-family-arabic: 'Tajawal', sans-serif;
|
||||
|
||||
:lang(ar) {
|
||||
font-family: $font-family-arabic;
|
||||
}
|
||||
|
||||
html,
|
||||
body,
|
||||
#app-container,
|
||||
#app-container > div,
|
||||
.root-layout {
|
||||
height: 100%;
|
||||
min-height: 100%;
|
||||
background: #f1f4f6;
|
||||
}
|
||||
|
||||
.root-layout {
|
||||
//font-family: 'Lato', sans-serif;
|
||||
// font-family: "Roboto Condensed", sans-serif;
|
||||
// font-size: 13px;
|
||||
// color: #373739;
|
||||
// background: #f1f4f6;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none !important;
|
||||
color: none !important;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.clearfix:after {
|
||||
content: '';
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.btn-focus.btn-shadow {
|
||||
box-shadow: 0 0.125rem 0.625rem rgba(68, 64, 84, 0.4),
|
||||
0 0.0625rem 0.125rem rgba(68, 64, 84, 0.5);
|
||||
color: #fff;
|
||||
background-color: #444054;
|
||||
border-color: #444054;
|
||||
}
|
||||
|
||||
.btn.btn-pill.btn-wide,
|
||||
.btn.btn-pill {
|
||||
border-top-left-radius: 50px;
|
||||
border-bottom-left-radius: 50px;
|
||||
border-top-right-radius: 50px;
|
||||
border-bottom-right-radius: 50px;
|
||||
}
|
||||
|
||||
.btn-group .btn {
|
||||
font-size: 0.8rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
/*
|
||||
.btn {
|
||||
position: relative;
|
||||
transition: color 0.15s, background-color 0.15s, border-color 0.15s,
|
||||
box-shadow 0.15s;
|
||||
|
||||
&-primary {
|
||||
color: #fff;
|
||||
background-color: #545cd8;
|
||||
border-color: #545cd8;
|
||||
}
|
||||
|
||||
&-secondary {
|
||||
border: 1px solid #444444;
|
||||
border-bottom: 3px solid #2f2f2f;
|
||||
background: #444444;
|
||||
box-shadow: inset 0 0 0 0 #2f2f2f;
|
||||
text-shadow: none;
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
box-shadow: inset 0 -100px 0 0 #2f2f2f;
|
||||
}
|
||||
}
|
||||
|
||||
&-default {
|
||||
background: #0291ae;
|
||||
text-shadow: none;
|
||||
color: #fff;
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
background: #007c8c;
|
||||
}
|
||||
}
|
||||
|
||||
&-outline {
|
||||
&-primary {
|
||||
color: #82c4a9 !important;
|
||||
border-color: #82c4a9 !important;
|
||||
|
||||
&:hover,
|
||||
&:active {
|
||||
background: #82c4a9 !important;
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
box-shadow: 0 0 0 0.2rem rgba(58, 196, 125, 0.5) !important;
|
||||
}
|
||||
}
|
||||
&-secondary {
|
||||
color: #444444 !important;
|
||||
border-color: #444444 !important;
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
box-shadow: inset 0 -100px 0 0 #2f2f2f;
|
||||
}
|
||||
}
|
||||
|
||||
&-default {
|
||||
color: #0291ae !important;
|
||||
border-color: #0291ae !important;
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
background: #0291ae;
|
||||
color: #fff !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
/* .custom-control {
|
||||
&-input:checked ~ .custom-control-label::before {
|
||||
color: #fff;
|
||||
border-color: #ccc !important;
|
||||
}
|
||||
|
||||
&-input:checked ~ .custom-control-label::before {
|
||||
background-color: #012160 !important;
|
||||
}
|
||||
|
||||
&-input:focus ~ .custom-control-label:before {
|
||||
box-shadow: 0 0 0 0.2rem rgba(1, 33, 96, 0.25) !important;
|
||||
}
|
||||
} */
|
||||
|
||||
/*
|
||||
.button {
|
||||
color: #ffffff;
|
||||
font-weight: 700;
|
||||
font-size: 14px;
|
||||
padding: 3px 17px;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
transition: all ease 0.4s;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
border: none;
|
||||
-webkit-border-radius: 5px;
|
||||
-moz-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
height: 30px;
|
||||
|
||||
&--primary {
|
||||
background: #82c4a9;
|
||||
}
|
||||
|
||||
&--secondary {
|
||||
border: 1px solid #444444;
|
||||
border-bottom: 3px solid #2f2f2f;
|
||||
background: #444444;
|
||||
box-shadow: inset 0 0 0 0 #2f2f2f;
|
||||
text-shadow: none;
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
box-shadow: inset 0 -100px 0 0 #2f2f2f;
|
||||
}
|
||||
}
|
||||
|
||||
&--default {
|
||||
background: #0291ae;
|
||||
text-shadow: none;
|
||||
color: #fff;
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
background: #007c8c;
|
||||
}
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
.tool-button {
|
||||
border: 1px solid #bcbec0;
|
||||
padding: 0 10px;
|
||||
background: #fff;
|
||||
height: 25px;
|
||||
cursor: pointer;
|
||||
white-space: nowrap;
|
||||
color: #373739;
|
||||
border-radius: 2px;
|
||||
|
||||
&:hover {
|
||||
border-color: #6d6e71;
|
||||
}
|
||||
}
|
||||
|
||||
.checkbox-label {
|
||||
display: inline-block;
|
||||
vertical-align: bottom;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.checkbox-input-hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
input[type='checkbox'] + .checkbox-label i,
|
||||
input[type='radio'] + .checkbox-label i {
|
||||
font-size: 14px;
|
||||
width: 10px;
|
||||
vertical-align: middle;
|
||||
margin-inline-end: 5px;
|
||||
}
|
||||
|
||||
input[type='checkbox'] + .checkbox-label i.selected,
|
||||
input[type='radio'] + .checkbox-label i.selected {
|
||||
display: none;
|
||||
}
|
||||
|
||||
input[type='checkbox']:checked + label i.unselected,
|
||||
input[type='radio']:checked + label i.unselected {
|
||||
display: none;
|
||||
}
|
||||
|
||||
input[type='checkbox']:checked + label i.selected,
|
||||
input[type='radio']:checked + label i.selected {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
input[type='checkbox'] + label i.unselected,
|
||||
input[type='radio'] + label i.unselected {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
input,
|
||||
select,
|
||||
textarea,
|
||||
button {
|
||||
font-family: inherit;
|
||||
}
|
||||
|
||||
textarea {
|
||||
resize: none;
|
||||
border: 1px solid #bcbec0;
|
||||
border-radius: 0.25rem;
|
||||
}
|
||||
|
||||
.logo {
|
||||
color: #fff;
|
||||
font-size: 18px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.error-msg {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.main-loader {
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: #fff url('./../images/loadingspinner.gif') no-repeat center center;
|
||||
}
|
||||
|
||||
.component-loader {
|
||||
display: none;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba(255, 255, 255, 0.7) url('./../images/loadingspinner.gif')
|
||||
no-repeat center center;
|
||||
z-index: 9999;
|
||||
}
|
||||
/*
|
||||
.popup {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 10;
|
||||
background: rgba(255, 255, 255, 0.7);
|
||||
overflow: auto;
|
||||
|
||||
&__content {
|
||||
min-width: 400px;
|
||||
position: absolute;
|
||||
width: auto;
|
||||
left: 50%;
|
||||
top: 10%;
|
||||
margin-bottom: 20px;
|
||||
transform: translate(-50%, 0);
|
||||
background: #fff;
|
||||
border: 1px solid #bcbec0;
|
||||
box-shadow: 0 1px 1px 1px #e9e9ea;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
&__col-50 {
|
||||
display: inline-block;
|
||||
width: 50%;
|
||||
vertical-align: top;
|
||||
|
||||
&:first-child {
|
||||
padding-inline-end: 15px;
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
padding-inline-start: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
&__input-label {
|
||||
display: block;
|
||||
line-height: 24px;
|
||||
font-weight: 700;
|
||||
color: #6d6e71;
|
||||
}
|
||||
|
||||
&__select {
|
||||
height: 25px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
&__head {
|
||||
//border-top: 4px solid #ff9900;
|
||||
color: #373739;
|
||||
font-size: 18px;
|
||||
min-height: 20px;
|
||||
line-height: 20px;
|
||||
padding: 10px;
|
||||
border-bottom: 1px solid #bcbec0;
|
||||
}
|
||||
&__close-btn {
|
||||
float: right;
|
||||
color: #373739;
|
||||
}
|
||||
|
||||
&__body {
|
||||
padding: 20px 12px 12px 12px;
|
||||
display: block;
|
||||
min-height: 40px;
|
||||
white-space: nowrap;
|
||||
border-bottom: 1px solid #bcbec0;
|
||||
}
|
||||
|
||||
&__checks-list {
|
||||
li {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
&__footer {
|
||||
min-height: 25px;
|
||||
padding: 10px 10px 15px 10px;
|
||||
text-align: end;
|
||||
|
||||
.button {
|
||||
margin-inline-start: 5px;
|
||||
}
|
||||
}
|
||||
} */
|
||||
|
||||
//advanced filters
|
||||
.advanced-filters {
|
||||
width: 230px;
|
||||
margin-inline-start: 20px;
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.info-link {
|
||||
margin-inline-start: 5px;
|
||||
color: #969697;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none !important;
|
||||
}
|
||||
@@ -0,0 +1,561 @@
|
||||
/**
|
||||
Middle
|
||||
*/
|
||||
|
||||
@media (max-width: 1280px) and (min-width: 800px) {
|
||||
.main-header {
|
||||
height: 60px;
|
||||
.logo-img {
|
||||
background: url(../images/logo/logo-small.png) no-repeat;
|
||||
-webkit-background-size: contain;
|
||||
background-size: contain;
|
||||
}
|
||||
}
|
||||
|
||||
.main-tabs-links__item {
|
||||
width: 70px;
|
||||
}
|
||||
|
||||
.header-settings {
|
||||
margin-inline-end: 15px;
|
||||
&__item {
|
||||
padding-inline-start: 8px;
|
||||
padding-inline-end: 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
Mobile
|
||||
*/
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.article {
|
||||
display: block;
|
||||
&__img {
|
||||
margin: 20px 0 0;
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
.for-small {
|
||||
display: none !important;
|
||||
|
||||
&-p {
|
||||
font-size: 12px !important;
|
||||
}
|
||||
}
|
||||
.account-form {
|
||||
width: 90%;
|
||||
padding: 30px 35px;
|
||||
&__title,
|
||||
&__subtitle {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
&__title {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
&__subtitle {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
&__note {
|
||||
margin-top: 25px;
|
||||
}
|
||||
|
||||
&__alt-title {
|
||||
font-size: 18px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
button {
|
||||
font-size: 16px;
|
||||
padding: 10px 20px;
|
||||
height: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
.login-register {
|
||||
min-height: calc(100% - 100px);
|
||||
input[type="email"],
|
||||
input[type="password"],
|
||||
input[type="text"] {
|
||||
height: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
.footer {
|
||||
height: auto;
|
||||
padding: 5px 10px;
|
||||
&__list {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
&__link {
|
||||
font-size: 13px;
|
||||
line-height: 34px;
|
||||
}
|
||||
}
|
||||
|
||||
.main-header {
|
||||
height: 70px;
|
||||
}
|
||||
|
||||
.app-header {
|
||||
.logo {
|
||||
.logo-img {
|
||||
height: 55px;
|
||||
background: url(../images/logo/logo-small.png) no-repeat;
|
||||
-webkit-background-size: contain;
|
||||
background-size: contain;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.login-header {
|
||||
text-align: center;
|
||||
.logo-img {
|
||||
background: url(../images/logo/logo-small.png) no-repeat;
|
||||
-webkit-background-size: contain;
|
||||
background-size: contain;
|
||||
}
|
||||
}
|
||||
|
||||
.app-header .logo {
|
||||
margin-inline-start: 20px;
|
||||
width: 80px;
|
||||
padding-top: 10px;
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.main-tabs-links__item {
|
||||
padding-top: 0;
|
||||
width: 50px;
|
||||
}
|
||||
|
||||
.menu-opener {
|
||||
position: absolute;
|
||||
display: block;
|
||||
right: 20px;
|
||||
top: 25px;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
background: none;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
.icon-bar {
|
||||
background: #ffffff;
|
||||
height: 2px;
|
||||
width: 100%;
|
||||
display: block;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
background-attachment: fixed !important;
|
||||
&.register {
|
||||
.account-form {
|
||||
width: 95%;
|
||||
}
|
||||
|
||||
.account-form__content {
|
||||
padding: 20px 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.account-form__column {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.account-form__content__body {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.account-form__content {
|
||||
h1 {
|
||||
font-size: 26px;
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
|
||||
.account-form__register-title {
|
||||
a {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
.plan-item {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
/***/
|
||||
|
||||
.main-tabs-links,
|
||||
.header-settings {
|
||||
display: none;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
background: #0291ae;
|
||||
z-index: 99;
|
||||
.menu-opened & {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
.main-tabs-links {
|
||||
top: 70px;
|
||||
height: auto;
|
||||
&__item {
|
||||
height: auto;
|
||||
display: block;
|
||||
width: 200px;
|
||||
text-align: end;
|
||||
padding: 10px 20px 10px 10px;
|
||||
margin: 0;
|
||||
&.active {
|
||||
border: none;
|
||||
background: #ffffff;
|
||||
color: #0291ae;
|
||||
}
|
||||
p {
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
line-height: 20px;
|
||||
width: 140px;
|
||||
}
|
||||
}
|
||||
|
||||
&__icon {
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
margin: 0 10px 0 0;
|
||||
}
|
||||
}
|
||||
|
||||
.header-settings {
|
||||
top: 196px;
|
||||
height: auto;
|
||||
right: 0;
|
||||
margin-inline-end: 0;
|
||||
width: 200px;
|
||||
&__item {
|
||||
padding: 10px 20px 10px 10px;
|
||||
display: block;
|
||||
float: none;
|
||||
}
|
||||
|
||||
.langs-settings__icon,
|
||||
.user-settings__name,
|
||||
.whats-new-btn {
|
||||
display: block;
|
||||
line-height: 20px;
|
||||
text-align: end;
|
||||
}
|
||||
|
||||
.langs-settings__icon {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.whats-new-btn__text {
|
||||
width: 140px;
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.whats-new-btn__icon {
|
||||
margin-inline-end: 8px;
|
||||
font-size: 14px;
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
line-height: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
/****/
|
||||
|
||||
.sub-tabs-links {
|
||||
margin-inline-start: 0;
|
||||
border: none;
|
||||
}
|
||||
|
||||
/**/
|
||||
|
||||
.tabs-content--short {
|
||||
margin-inline-start: 15px;
|
||||
}
|
||||
|
||||
.app-sidebar {
|
||||
position: fixed;
|
||||
// top: 112px;
|
||||
bottom: 0px;
|
||||
z-index: 9;
|
||||
|
||||
&.animation-disabled {
|
||||
.sidebar-divider,
|
||||
.sidebar-panel {
|
||||
animation: none !important;
|
||||
background: #2e3047;
|
||||
|
||||
&:after {
|
||||
content: "";
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
background-color: rgba(#151f30, 0.5);
|
||||
transition: 250ms background-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-divider {
|
||||
left: 0;
|
||||
|
||||
.sidebar-opened & {
|
||||
animation: openSidebarHandle 1s;
|
||||
left: 0;
|
||||
}
|
||||
.sidebar-closed & {
|
||||
animation: closeSidebarHandle 1s;
|
||||
left: $sidebar-width;
|
||||
}
|
||||
|
||||
&__arrow-right {
|
||||
.sidebar-opened & {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
&__arrow-right {
|
||||
.sidebar-closed & {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes openSidebarHandle {
|
||||
0% {
|
||||
left: $sidebar-width;
|
||||
}
|
||||
100% {
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
@keyframes closeSidebarHandle {
|
||||
0% {
|
||||
left: 0;
|
||||
}
|
||||
100% {
|
||||
left: $sidebar-width;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-panel {
|
||||
.sidebar-opened & {
|
||||
animation: openSidebar 1s;
|
||||
width: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
.sidebar-closed & {
|
||||
animation: closeSidebar 1s;
|
||||
width: $sidebar-width;
|
||||
}
|
||||
|
||||
&__wrap {
|
||||
width: $sidebar-width;
|
||||
padding: 0 15px 0 30px;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes closeSidebar {
|
||||
0% {
|
||||
width: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
99% {
|
||||
overflow: hidden;
|
||||
}
|
||||
100% {
|
||||
width: $sidebar-width;
|
||||
overflow: visible;
|
||||
}
|
||||
}
|
||||
@keyframes openSidebar {
|
||||
0% {
|
||||
width: $sidebar-width;
|
||||
}
|
||||
100% {
|
||||
width: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.welcome-container {
|
||||
width: 100%;
|
||||
&__block {
|
||||
display: block;
|
||||
width: 100%;
|
||||
margin: 20px 0 30px;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
|
||||
/**/
|
||||
.searching-block {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.button {
|
||||
font-weight: normal;
|
||||
font-size: 12px;
|
||||
padding: 3px 8px;
|
||||
}
|
||||
|
||||
.searching-block__btns .button {
|
||||
margin: 7px 7px 0 0;
|
||||
}
|
||||
|
||||
.sources-table {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.table-pager__pages {
|
||||
float: none;
|
||||
width: 100%;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.table-pager__page {
|
||||
margin-inline-end: 5px;
|
||||
height: 27px;
|
||||
line-height: 24px;
|
||||
width: 27px;
|
||||
}
|
||||
|
||||
.table-pager__limits {
|
||||
font-size: 12px;
|
||||
width: 100%;
|
||||
float: none;
|
||||
text-align: start;
|
||||
}
|
||||
|
||||
.table-pager__limit {
|
||||
margin-inline-end: 5px;
|
||||
height: 22px;
|
||||
width: 22px;
|
||||
font-size: 8px;
|
||||
}
|
||||
|
||||
.search-content {
|
||||
display: block;
|
||||
.filters-table-container {
|
||||
width: 100%;
|
||||
margin-inline-start: 0;
|
||||
}
|
||||
}
|
||||
/*
|
||||
.source-lists-head:after {
|
||||
clear: both;
|
||||
content: "";
|
||||
display: table;
|
||||
}
|
||||
|
||||
.source-lists-head__title {
|
||||
float: none;
|
||||
width: 100%;
|
||||
margin-top: 10px;
|
||||
} */
|
||||
|
||||
.billing-plans__title {
|
||||
margin-bottom: 20px;
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
}
|
||||
}
|
||||
|
||||
.plan-item {
|
||||
margin-bottom: 50px;
|
||||
&__title {
|
||||
padding: 10px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
&__desc {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.button {
|
||||
padding: 10px 50px;
|
||||
}
|
||||
}
|
||||
|
||||
.welcome-container__subtext {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.welcome-container__h1 {
|
||||
font-size: 24px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.welcome-container__h2 {
|
||||
margin-bottom: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.button {
|
||||
font-size: 14px;
|
||||
padding: 5px 9px;
|
||||
}
|
||||
|
||||
.tabs-content {
|
||||
margin: 35px 15px 20px;
|
||||
}
|
||||
|
||||
.notifications-topbar {
|
||||
height: auto;
|
||||
&:after {
|
||||
clear: both;
|
||||
content: "";
|
||||
display: table;
|
||||
}
|
||||
|
||||
.notifications-buttons {
|
||||
.button {
|
||||
margin-inline-start: 0;
|
||||
margin-top: 0;
|
||||
margin-inline-end: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.paginated-table-top-panel {
|
||||
flex-wrap: wrap;
|
||||
height: auto;
|
||||
padding-inline-start: 0;
|
||||
}
|
||||
|
||||
.paginated-table-top-panel__buttons {
|
||||
button {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
}
|
||||
/*
|
||||
.popup__content {
|
||||
min-width: 300px;
|
||||
}
|
||||
|
||||
.popup {
|
||||
z-index: 999;
|
||||
} */
|
||||
}
|
||||
Reference in New Issue
Block a user