opengist/public/style.css

180 lines
3.1 KiB
CSS
Raw Normal View History

2023-03-14 15:22:52 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2024-01-04 03:44:56 +00:00
@config "./tailwind.config.js";
2023-03-14 15:22:52 +00:00
@layer base {
ul, ol {
list-style: revert;
}
}
2023-03-23 15:00:48 +00:00
html {
2023-05-27 11:58:08 +00:00
@apply bg-gray-50 dark:bg-gray-800;
2023-03-23 15:00:48 +00:00
}
2023-03-15 12:31:02 +00:00
a {
@apply text-primary-500;
}
2023-05-27 11:58:08 +00:00
p a:hover, h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
@apply underline;
2023-03-14 15:22:52 +00:00
}
input {
2023-05-27 11:58:08 +00:00
@apply placeholder-gray-300 dark:placeholder-gray-400;
2023-03-14 15:22:52 +00:00
}
:not(pre) > code[class*="language-"], pre[class*="language-"] {
2023-05-27 11:58:08 +00:00
@apply bg-white dark:bg-gray-900 mt-1 pt-1 !important;
2023-03-14 15:22:52 +00:00
}
pre {
font-size: 0.8em !important;
}
.code {
font-family: Menlo,Consolas,Liberation Mono,monospace;
}
.code .line-num {
width: 4%;
text-align: right;
}
.red-diff {
background-color: rgba(255, 0, 0, .1);
}
.green-diff {
background-color: rgba(0, 255, 128, .1);
}
.gray-diff {
background-color: rgba(143, 143, 143, 0.38);
@apply py-4 !important
}
#logged-button:hover .username {
@apply hidden !important
}
#logged-button:hover .logout {
@apply block !important
}
.cm-line, .cm-gutter {
2023-05-27 11:58:08 +00:00
@apply bg-white dark:bg-gray-900 dark:caret-white caret-slate-700 !important;
2023-03-14 15:22:52 +00:00
padding: 0 !important;
}
.cm-activeLine, .cm-activeLineGutter {
2023-05-27 11:58:08 +00:00
@apply bg-gray-50 dark:bg-gray-800 !important;
2023-03-14 15:22:52 +00:00
}
.cm-gutters {
border: none !important;
}
.cm-gutterElement {
2023-05-27 11:58:08 +00:00
@apply text-gray-700 dark:text-gray-300 px-4 !important
2023-03-14 15:22:52 +00:00
}
.code td {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.code tbody {
line-height: 18.2px;
}
#editor {
height: 337px;
max-height: 337px;
}
.cm-editor {
height: 337px;
max-height: 337px;
}
.line-code.selected {
2023-05-27 11:58:08 +00:00
background-color: rgb(255, 247, 190) !important;
box-shadow: inset 4px 0 0 rgb(255, 213, 65) !important;
}
.dark .line-code.selected {
background-color: rgb(54, 49, 32) !important;
box-shadow: inset 4px 0 0 rgb(161, 128, 21) !important;
2023-03-14 15:22:52 +00:00
}
.line-code {
@apply pl-2;
2023-05-27 11:58:08 +00:00
background: none !important;
2023-03-14 15:22:52 +00:00
}
.line-num {
2023-05-27 11:58:08 +00:00
@apply cursor-pointer text-slate-600 dark:text-slate-400 hover:text-black dark:hover:text-white;
2023-03-19 02:18:56 +00:00
}
table.csv-table {
@apply w-full whitespace-pre text-xs;
}
table.csv-table thead {
text-align: left;
}
table.csv-table thead tr {
2023-05-27 11:58:08 +00:00
@apply bg-slate-100 dark:bg-slate-800;
2023-03-19 02:18:56 +00:00
}
table.csv-table thead tr th {
2023-05-27 11:58:08 +00:00
@apply border py-2 px-1 border-slate-300 dark:border-slate-700;
2023-03-19 02:18:56 +00:00
}
table.csv-table tbody td {
2023-05-27 11:58:08 +00:00
@apply border py-1.5 px-1 border-slate-200 dark:border-slate-800;
}
2023-06-07 18:50:30 +00:00
dl.dl-config {
@apply grid grid-cols-3 text-sm;
}
dl.dl-config dt {
@apply col-span-1 text-gray-700 dark:text-slate-300 font-bold;
}
dl.dl-config dd {
@apply ml-1 col-span-2 break-words;
}
.markdown-body {
@apply dark:bg-gray-900 !important;
}
.markdown-body pre {
@apply flex relative items-start p-0 !important;
}
.markdown-body .code-div {
@apply p-4 max-w-full overflow-x-auto !important;
}
.markdown-body code {
@apply overflow-auto whitespace-pre !important;
}
.chroma.preview.markdown pre code {
@apply p-4 !important;
}
.mermaid {
background: #f6f8fa !important;
}
2024-02-24 17:09:23 +00:00
.hidden-important {
@apply hidden !important;
}