opengist/public/style.css

137 lines
2 KiB
CSS
Raw Normal View History

2023-03-14 15:22:52 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
ul, ol {
list-style: revert;
}
}
2023-03-23 15:00:48 +00:00
html {
@apply bg-gray-800;
}
2023-03-15 12:31:02 +00:00
a {
@apply text-primary-500;
}
2023-03-14 15:22:52 +00:00
a:hover {
2023-03-15 12:31:02 +00:00
@apply text-primary-600;
2023-03-14 15:22:52 +00:00
}
input {
@apply placeholder-gray-400;
}
:not(pre) > code[class*="language-"], pre[class*="language-"] {
@apply bg-gray-900 mt-1 pt-1 !important;
}
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 {
@apply bg-gray-900 !important;
caret-color: white !important;
padding: 0 !important;
}
.cm-activeLine, .cm-activeLineGutter {
@apply bg-gray-800 !important;
}
.cm-gutters {
border: none !important;
}
.cm-gutterElement {
@apply text-gray-300 px-4 !important
}
.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;
}
.hljs {
background: none !important;
}
.line-code.selected {
background-color: rgba(65, 25, 63, 0.46) !important;
box-shadow: inset 4px 0 0 rgb(107, 38, 102) !important;
}
.line-code {
@apply pl-2;
}
.line-num {
@apply cursor-pointer text-slate-400 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 {
@apply bg-slate-800;
}
table.csv-table thead tr th {
@apply border py-2 px-1 border-slate-700;
}
table.csv-table tbody td {
@apply border py-1.5 px-1 border-slate-800;
2023-03-14 15:22:52 +00:00
}