mirror of https://github.com/artf/grapesjs.git
nocodeframeworkdrag-and-dropsite-buildersite-generatortemplate-builderui-builderweb-builderweb-builder-frameworkwebsite-builderno-codepage-builder
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
1.2 KiB
80 lines
1.2 KiB
.img-ctr, .img-ctr-rad {
|
|
margin: 0 auto;
|
|
display: block;
|
|
}
|
|
|
|
.img-ctr-rad {
|
|
border-radius: 5px;
|
|
width: 100%;
|
|
}
|
|
|
|
.navbar {
|
|
background-color: rgb(111, 41, 67);
|
|
background-image: linear-gradient(120deg, rgb(217, 131, 166), rgb(77, 17, 79));
|
|
color: $navBarColor;
|
|
border: none;
|
|
|
|
.logo {
|
|
min-width: auto;
|
|
}
|
|
|
|
.site-name {
|
|
color: $navBarColor !important;
|
|
}
|
|
|
|
.links {
|
|
background-color: transparent !important;
|
|
}
|
|
}
|
|
|
|
.token.string {
|
|
color: $accentColor;
|
|
}
|
|
|
|
@media (min-width: 719px) {
|
|
.nav-links a:hover,
|
|
.nav-links a.router-link-active {
|
|
color: #ffeff2 !important;
|
|
}
|
|
}
|
|
|
|
.search-box input {
|
|
border: 1px solid transparent;
|
|
transition: border 0.25s;
|
|
}
|
|
|
|
.page-nav,
|
|
.page-edit,
|
|
.content:not(.custom) {
|
|
max-width: $pageWidth;
|
|
}
|
|
|
|
.page__getting-started {
|
|
.language-js .language-js {
|
|
max-height: 300px;
|
|
}
|
|
}
|
|
|
|
|
|
// Scrollbars
|
|
* {
|
|
::-webkit-scrollbar-track {}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: alpha(black, 0.1);
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: $scrollBarSize;
|
|
}
|
|
}
|
|
|
|
.language-js {
|
|
::-webkit-scrollbar {
|
|
height: $scrollBarSize;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: alpha(white, 0.3);
|
|
}
|
|
}
|
|
|