123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632 |
- // Landing Page bundle
- @import "fonts";
- @import "lib/fontawesome";
- @import "lib/inter";
- @import "lib/manrope";
- @import 'variables';
- @import '~bootstrap/scss/bootstrap';
- @import 'custom';
- body {
- background: #080e2b;
- font-family: 'Manrope', sans-serif;
- color: #fff;
- }
- .bg-black {
- background-color: #080e2b;
- transition: background-color 0.3s ease;
- }
- .navbar {
- padding-top: 20px;
- padding-bottom: 20px;
- &-brand {
- display: flex;
- align-items: center;
- gap: 10px;
- span {
- font-weight: bold;
- font-size: 14px;
- display: none;
- @include media-breakpoint-up(sm) {
- display: block;
- font-size: 18px;
- }
- }
- }
- .nav-link {
- &.active {
- font-weight: bold;
- }
- }
- @include media-breakpoint-up(lg) {
- .nav-link {
- margin-right: 1rem !important;
- }
- }
- }
- .bg-bluegray {
- &-700 {
- background-color: #334155;
- }
- &-800 {
- background-color: #1e293b;
- }
- &-900 {
- background-color: #0f172a;
- }
- }
- .text-bluegray {
- &-400 {
- color: #94a3b8;
- }
- &-500 {
- color: #64748b;
- }
- &-600 {
- color: #475569;
- }
- }
- .page-wrapper {
- position: relative;
- padding-top: 3rem;
- padding-bottom: 3rem;
- min-height: 100vh !important;
- background-color: #212529 !important;
- background-image: url("/_landing/bg.jpg");
- background-size: cover !important;
- background-repeat: no-repeat !important;
- background-position: center !important;
- }
- .container-compact {
- max-width: 600px;
- margin-top: 3rem;
- padding-top: 3rem;
- padding-left: 0.25rem;
- padding-right: 0.25rem;
- @media (min-width: 768px) {
- padding-top: 0 !important;
- }
- }
- .overflow-hidden {
- overflow: hidden !important;
- }
- .bg-glass {
- background: rgba(255, 255, 255, 0.05);
- border-radius: 16px;
- box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
- backdrop-filter: blur(5px);
- -webkit-backdrop-filter: blur(5px);
- border: 1px solid rgba(255, 255, 255, 0.05);
- margin-bottom: -1px;
- }
- .text-gradient-primary {
- background: linear-gradient(to right, #6366f1, #8B5CF6, #D946EF);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- .gap-3 {
- gap: 3rem;
- }
- .btn-primary-alt {
- border: none;
- outline: none;
- color: white;
- position: relative;
- z-index: 1;
- cursor: pointer;
- background: none;
- text-shadow: 3px 3px 10px rgba(0,0,0,.45);
- &:before, &:after {
- position: absolute;
- top: 50%;
- left: 50%;
- border-radius: 10em;
- transform: translateX(-50%) translateY(-50%);
- width: 105%;
- height: 105%;
- content: '';
- z-index: -2;
- background-size: 400% 400%;
- background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
- }
- &:before {
- filter: blur(7px);
- transition: all .25s ease;
- animation: pulse 10s infinite ease;
- }
- &:after {
- filter: blur(0.3px);
- }
- &:hover {
- &:before {
- width: 115%;
- height: 115%;
- }
- }
- }
- .opacity-50 {
- opacity: 50%;
- }
- .opacity-30 {
- opacity: 30%;
- }
- .nav-menu {
- border-bottom: 1px solid #334155;
- .nav-link {
- color: #94a3b8;
- position: relative;
- font-size: 12px;
- @media(min-width: 768px) {
- font-size: 16px;
- }
- &.active {
- color: #ffffff;
- font-weight: 600;
- }
- &.active:before,
- &.active:after,
- &.nav-item:hover:before,
- &.nav-item:hover:after {
- content: ' ';
- position: absolute;
- border: solid 10px transparent;
- border-bottom: solid 0px transparent;
- border-width: 10px;
- bottom: -12px;
- left: 50%;
- margin-left: -10px;
- border-color: transparent transparent #334155;
- }
- &.active:after,
- &.nav-item:hover:after {
- bottom: -14px;
- border-color: transparent transparent #0f172a;
- }
- }
- }
- .footer-component {
- padding: 3rem 1rem 1rem 1rem;
- &-links {
- display: flex;
- flex-direction: column;
- gap: 1rem;
- align-items: center;
- margin-bottom: 3rem;
- font-size: 15px;
- a {
- color: #94a3b8;
- font-weight: 700;
- text-transform: uppercase;
- }
- .spacer {
- display: none;
- @include media-breakpoint-up(md) {
- color: #64748b;
- display: block !important;
- }
- }
- }
- &-attribution {
- display: flex;
- flex-direction: column;
- gap: 0.5rem;
- align-items: center;
- color: #64748b;
- font-size: 13px;
- a {
- color: #64748b;
- font-weight: 700;
- }
- .spacer {
- display: none;
- @include media-breakpoint-up(md) {
- color: #64748b;
- display: block !important;
- }
- }
- }
- @include media-breakpoint-up(md) {
- padding: 3rem 0;
- &-links {
- margin-bottom: 1rem;
- flex-direction: row;
- justify-content: center;
- font-size: 13px;
- }
- &-attribution {
- flex-direction: row;
- justify-content: center;
- font-size: 11.5px;
- }
- }
- }
- .landing-index-component {
- width: 100%;
- overflow: hidden;
- .logo {
- margin-right: 10px;
- }
- h1 {
- color: var(--light);
- font-size: 4em;
- font-weight: bold;
- margin-bottom: 0;
- }
- p {
- color: var(--light);
- }
- .server-header {
- margin: 0 0 30px 0;
- &-domain {
- text-align: center;
- font-size: 25px;
- font-weight: 700;
- }
- &-attribution {
- font-size: 16px;
- text-align: center;
- color: #94a3b8;
- letter-spacing: 0.6px;
- a {
- color: #ffffff;
- font-weight: 800;
- }
- }
- }
- .server-stats {
- margin: 30px 0;
- .list-group {
- flex-direction: column;
- border-color: #1e293b;
- @media (min-width: 768px) {
- flex-direction: row;
- &-item {
- border-color: #1e293b;
- flex-grow: 1;
- border-top-width: 1px;
- border-left-width: 0;
- &:first-child {
- border-left-width: 1px;
- }
- &:last-child {
- border-top-right-radius: 0.25rem;
- border-bottom-left-radius: 0;
- }
- }
- }
- &-item {
- border-color: #1e293b;
- }
- }
- .stat-value {
- font-size: 20px;
- font-weight: 700;
- color: #ffffff;
- margin-bottom: 0;
- }
- .stat-label {
- font-size: 12px;
- font-weight: 700;
- color: #94a3b8;
- margin-bottom: 0;
- text-transform: uppercase;
- letter-spacing: 0.8px;
- }
- }
- .server-admin {
- margin: 30px 0;
- .list-group {
- flex-direction: column;
- border-color: #1e293b;
- @media (min-width: 768px) {
- flex-direction: row;
- &-item {
- border-color: #1e293b;
- flex-grow: 1;
- border-top-width: 1px;
- border-left-width: 0;
- &:first-child {
- border-left-width: 1px;
- }
- &:last-child {
- border-top-right-radius: 0.25rem;
- border-bottom-left-radius: 0;
- }
- }
- }
- &-item {
- border-color: #1e293b;
- }
- }
- .item-label {
- color: #94a3b8;
- text-transform: uppercase;
- font-weight: 500;
- letter-spacing: 1px;
- }
- .admin-card {
- text-decoration: none;
- .d-flex {
- gap: 10px;
- }
- .avatar {
- border-radius: 6px;
- }
- .user-info {
- .display-name {
- color: #94a3b8;
- }
- .username {
- font-weight: 700;
- }
- .display-name,
- .username {
- margin-bottom: 0;
- }
- }
- }
- .admin-email {
- color: #ffffff;
- font-size: 15px;
- font-weight: 700;
- text-decoration: none;
- }
- }
- .accordion {
- .btn-block {
- display: flex;
- justify-content: space-between;
- align-items: center;
- text-decoration: none;
- .h5 {
- margin-bottom: 0;
- }
- &:focus {
- box-shadow: none;
- }
- .far {
- color: #cbd5e1;
- }
- .text-white {
- .far {
- color: #94a3b8;
- }
- }
- }
- .about-text {
- padding: 40px 24px;
- p {
- font-size: 17px;
- }
- p:last-child {
- margin-bottom: 0;
- }
- }
- .list-group-rules {
- .list-group-item {
- display: flex;
- gap: 10px;
- align-items: center;
- border-color: #475569;
- .rule-id {
- color: #475569;
- font-size: 20px;
- }
- .rule-text {
- color: #fff;
- }
- }
- }
- .card-features {
- &-cloud {
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- gap: 10px;
- padding: 10px 5px;
- margin-bottom: 20px;
- .badge {
- font-size: 13px;
- font-weight: 400;
- padding: 5px 10px;
- &-success {
- background: #86efac30;
- }
- .far {
- margin-right: 5px;
- color: #22c55e;
- }
- }
- }
- .list-group-features {
- .list-group-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-color: #475569;
- .feature-label {
- font-size: 15px;
- }
- .fa-times-circle {
- color: #f43f5e;
- }
- .fa-check-circle {
- color: #22c55e;
- }
- }
- }
- }
- }
- }
- .landing-directory-component {
- .feed-list {
- display: flex;
- flex-direction: column;
- gap: 20px;
- }
- .landing-user-card {
- .display-name {
- a {
- @extend .text-bluegray-400;
- font-size: 12px;
- font-weight: 500;
- text-decoration: none;
- }
- }
- .username {
- margin-bottom: 2px;
- a {
- color: #fff;
- font-size: 18px;
- font-weight: 800;
- text-decoration: none;
- }
- }
- .user-stats {
- display: flex;
- justify-content: space-between;
- &-item {
- @extend .text-bluegray-500;
- font-size: 13px;
- font-weight: 600;
- }
- }
- .user-bio {
- @extend .bg-bluegray-700;
- margin-top: 1rem;
- padding: 15px;
- border-radius: 10px;
- }
- }
- }
- .landing-explore-component {
- .feed-list {
- display: flex;
- flex-direction: column;
- gap: 20px;
- .landing-post-card {
- a.text-bluegray-400 {
- &:hover {
- color: #cbd5e1;
- text-decoration: none;
- }
- }
- a.text-bluegray-500 {
- &:hover {
- color: #94a3b8;
- text-decoration: none;
- }
- }
- .read-more-component {
- color: #64748b;
- a {
- color: #94a3b8;
- font-weight: 600;
- }
- }
- }
- }
- }
|