GNXSOFT.COM

This commit is contained in:
Iliyan Angelov
2025-09-26 00:15:37 +03:00
commit fe26b7cca4
16323 changed files with 2011881 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,193 @@
/* ====
--------- (2.01) reset styles start ---------
==== */
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
&::-moz-selection {
color: #ffffff;
background-color: #1770c8;
}
&::selection {
color: #ffffff;
background-color: #1770c8;
}
}
html {
scroll-behavior: unset !important;
}
body {
font-family: var(--inter);
font-size: 16px;
line-height: 0px;
font-weight: 400;
color: var(--template-color);
background-color: var(--template-bg);
overflow-x: clip;
max-width: 100vw;
min-height: 100vh;
text-transform: capitalize;
&::-webkit-scrollbar {
width: 5px;
}
&::-webkit-scrollbar-track {
background-color: #cae6f7;
border-radius: 5px;
}
&::-webkit-scrollbar-button,
&::-webkit-scrollbar-thumb {
background-color: var(--primary-color);
border-radius: 5px;
}
}
.body-active {
min-height: 100vh;
}
.my-app {
position: relative;
min-width: 100vw;
min-height: 100vh;
max-width: 100vw;
overflow-x: clip;
height: 100%;
}
.tp-app {
overflow-x: clip !important;
}
button {
background-color: transparent;
border: 0px;
outline: 0px;
}
a,
button {
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 8px;
outline: 0px;
border: 0px;
transition: var(--transition);
cursor: pointer;
i {
font-size: inherit;
line-height: inherit;
color: inherit;
}
&:hover {
text-decoration: none;
border: 0px;
outline: 0px;
}
&:focus {
box-shadow: none;
outline: 0px;
}
}
ul,
ol {
list-style-type: none;
list-style-position: inside;
margin: 0px;
padding: 0px;
}
hr,
blockquote,
textarea {
margin: 0px;
opacity: 1;
}
input,
textarea {
border: 0px;
outline: 0px;
&:focus {
box-shadow: none;
}
}
input {
&::-webkit-outer-spin-button,
&::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0px;
}
}
input[type="number"] {
-moz-appearance: textfield;
appearance: textfield;
}
input[type="checkbox"] {
width: initial;
height: initial;
}
textarea {
min-height: 150px;
resize: none;
}
table {
border-collapse: collapse;
border-spacing: 0px;
}
iframe {
border: 0px;
width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
padding: 0px;
margin: 0px;
color: var(--template-color);
font-family: var(--inter);
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--mont);
text-transform: capitalize;
}
.odometer {
span {
font-family: var(--mont) !important;
}
}
/* ====
--------- (2.01) reset styles end ---------
==== */

View File

@@ -0,0 +1,122 @@
/* ====
--------- (2.02) typography styles start ---------
==== */
// Import IBM Plex Sans font
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=IBM+Plex+Mono:wght@400;500;600&display=swap');
// Global font family
* {
font-family: var(--font-family-sans);
}
// paragraph styles - Enterprise compact
p,
th,
td,
li,
input,
textarea,
select,
label,
blockquote,
span {
font-size: 15px;
line-height: 22px;
font-weight: 400;
color: var(--template-color);
font-family: var(--font-family-sans);
}
.text-xl {
font-size: 20px;
line-height: 28px;
}
.text-xs {
font-size: 14px;
line-height: 22px;
}
// link styles
a,
button {
font-size: 16px;
line-height: 22px;
color: var(--template-color);
font-weight: 400;
cursor: pointer;
display: inline-flex;
gap: 8px;
&:hover {
color: var(--primary-color);
}
}
// heading styles - Enterprise compact
h1,
.text-xxl {
font-size: 42px;
line-height: 50px;
font-weight: 700;
font-family: var(--font-family-display);
letter-spacing: -0.02em;
}
h2 {
font-size: 32px;
line-height: 40px;
font-weight: 600;
font-family: var(--font-family-display);
letter-spacing: -0.01em;
}
h3 {
font-size: 24px;
line-height: 32px;
font-weight: 600;
font-family: var(--font-family-display);
}
h4 {
font-size: 20px;
line-height: 28px;
font-weight: 500;
font-family: var(--font-family-display);
}
h5 {
font-size: 16px;
line-height: 24px;
font-weight: 500;
font-family: var(--font-family-display);
}
h6 {
font-size: 14px;
line-height: 20px;
font-weight: 500;
font-family: var(--font-family-display);
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
a,
span {
font-family: inherit;
font-size: inherit;
line-height: inherit;
font-weight: inherit;
color: inherit;
}
}
/* ====
--------- (2.02) typography styles end ---------
==== */