tuneit_demo / style.css
cryman38's picture
Upload style.css
1801d46 verified
raw
history blame
7.94 kB
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poor+Story&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Edu+AU+VIC+WA+NT+Hand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Honk&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap');
/* @font-face {
font-family: 'Paperlogy Light';
src: url('/file=font/Paperlogy/Paperlogy-3Light.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
body {
font-family: 'Paperlogy Light', sans-serif;
} */
:root {
--background-color-light: #ffffff;
--background-color-dark: #121212;
--text-color-light: #333333;
--text-color-dark: #ffffff;
--highlight-color-light: #f7f7f7;
--highlight-color-dark: #1e1e1e;
--header-color-light: #000000;
--header-color-dark: #ffffff;
--buy-color: #4caf50;
--sell-color: #f44336;
--highlight-edit-bg-color-light: #fff2cc;
--highlight-edit-text-color-light: #0000ff;
--highlight-edit-bg-color-dark: hsl(45, 100%, 70%);
--highlight-edit-text-color-dark: hsl(240, 100%, 50%);
--highlight-yellow-bg-color-light: #ffeb3b;
--highlight-yellow-bg-color-dark: #ffca28;
--highlight-yellow-text-color-light: #000000;
--highlight-yellow-text-color-dark: #000000;
--highlight-sky-bg-color-light: #ddf5fd;
--highlight-sky-bg-color-dark: #89c9e6;
--highlight-sky-text-color-light: #000000;
--highlight-sky-text-color-dark: #000000;
--highlight-black-light: #0c343d;
--highlight-black-dark: #ffffff;
--total-value-color-light: #000000;
--total-value-color-dark: #ffeb3b;
}
#col-container {
margin: 0 auto;
max-width: 100%;
font-family: 'Quicksand', 'ui-sans-serif', 'system-ui', 'sans-serif';
}
.h3_title {
padding: .75rem;
font-weight: 700;
border-bottom: 1px solid rgb(229, 231, 235);
}
.content {
-webkit-text-size-adjust: 100%;
tab-size: 4;
font-size: 1.125rem;
line-height: 1.75rem;
margin: 1.25em 0;
border: 0 solid #e5e7eb;
}
.code {
font-family: 'IBM Plex Mono', monospace;
}
.wrap-text {
word-wrap: break-word;
overflow-wrap: break-word;
white-space: normal;
}
.buy-sell {
font-weight: bold;
}
.buy {
color: var(--buy-color);
}
.sell {
color: var(--sell-color);
}
.highlight-edit {
background-color: var(--highlight-edit-bg-color-light);
color: var(--highlight-edit-text-color-light);
padding: 5px 10px;
font-weight: bold;
border-radius: 5px;
display: inline-block;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.highlight-black {
background-color: var(--highlight-black-light);
color: var(--text-color-dark);
padding: 5px 10px;
font-weight: bold;
border-radius: 5px;
display: inline-block;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.highlight-yellow {
background-color: var(--highlight-yellow-bg-color-light);
color: var(--highlight-yellow-text-color-light);
padding: 5px 10px;
font-weight: bold;
border-radius: 5px;
display: inline-block;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.highlight-sky {
background-color: var(--highlight-sky-bg-color-light);
color: var(--highlight-sky-text-color-light);
padding: 5px 10px;
font-weight: bold;
border-radius: 5px;
display: inline-block;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.table-header-bg-before {
background-color: #e7f9ef !important;
color: #000;
}
.table-header-bg-dividend {
background-color: #89c9e6 !important;
color: #000;
}
.table-header-bg-required {
background-color: #ffca28 !important;
color: #000;
}
.table-header-bg-after {
background-color: #d9d2e9 !important;
color: #000;
}
.table-container {
width: 100%;
overflow: auto;
margin-bottom: 20px;
position: relative;
max-height: 100%;
}
.table-container table {
width: 100%;
border-collapse: collapse;
}
.table-container td {
text-align: end;
}
.table-container th, .table-container td {
border: 1px solid #ddd;
padding: 8px;
background-color: var(--background-color-light);
}
.table-container th {
background-color: var(--highlight-color-light);
color: var(--header-color-light);
position: sticky;
top: 0;
z-index: 2;
}
.table-container td:first-child {
position: sticky;
left: 0;
z-index: 1;
text-align: left;
}
.table-container th:first-child {
position: sticky;
left: 0;
z-index: 3;
background-color: var(--highlight-color-light);
}
.table-container tr:hover td {
background: #e7f9ef;
color: #000;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
cursor: pointer;
transition: all 0.3s ease;
}
@media (prefers-color-scheme: dark) {
.highlight-yellow {
background-color: var(--highlight-yellow-bg-color-dark);
color: var(--highlight-yellow-text-color-dark);
}
.highlight-black {
background-color: var(--highlight-black-dark);
color: var(--text-color-light);
}
.highlight-sky {
background-color: var(--highlight-sky-bg-color-dark);
color: var(--highlight-sky-text-color-dark);
}
.highlight-edit {
background-color: var(--highlight-edit-bg-color-dark);
color: var(--highlight-edit-text-color-dark);
}
.table-container {
border: 1px solid #444;
}
.table-container th, .table-container td {
border: 1px solid #444;
background: #333;
color: #ccc;
}
.table-container thead {
background: #444;
}
.table-container th:first-child, .table-container td:first-child {
background: #444;
}
.table-container tr:hover td {
background: #e7f9ef;
color: #000;
}
.table-header-bg-before {
background-color: hsl(120, 60%, 80%) !important;
color: #000 !important;
}
.table-header-bg-dividend {
background-color: hsl(200, 60%, 70%) !important;
color: #000 !important;
}
.table-header-bg-required {
background-color: hsl(45, 100%, 70%) !important;
color: #000 !important;
}
.table-header-bg-after {
background-color: hsl(270, 30%, 80%) !important;
color: #000 !important;
}
}