2023-07-20 19:25:04 -04:00
|
|
|
@import '../node_modules/allotment/dist/style.css';
|
2023-07-21 12:48:23 -04:00
|
|
|
@import './colors.css';
|
2023-07-20 19:25:04 -04:00
|
|
|
|
2022-11-22 09:06:08 +11:00
|
|
|
@tailwind base;
|
|
|
|
|
@tailwind components;
|
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
2022-11-12 13:11:54 +11:00
|
|
|
body {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
|
|
|
|
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
|
|
|
|
sans-serif;
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-13 07:22:08 -04:00
|
|
|
.mono {
|
|
|
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
|
|
|
monospace;
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-12 13:11:54 +11:00
|
|
|
code {
|
|
|
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
|
|
|
monospace;
|
|
|
|
|
}
|
2023-03-15 19:03:55 +11:00
|
|
|
|
|
|
|
|
#code-mirror-override .cm-focused .cm-cursor {
|
2023-03-16 10:33:36 +11:00
|
|
|
width: 0px;
|
2023-03-15 19:03:55 +11:00
|
|
|
}
|
|
|
|
|
#code-mirror-override .cm-cursor {
|
|
|
|
|
display: block;
|
2023-03-16 10:33:36 +11:00
|
|
|
width: 200px;
|
2023-07-26 11:47:18 -05:00
|
|
|
background: linear-gradient(
|
|
|
|
|
to right,
|
|
|
|
|
rgb(0, 55, 94) 0%,
|
|
|
|
|
#0084e2ff 2%,
|
|
|
|
|
#0084e255 5%,
|
|
|
|
|
transparent 100%
|
|
|
|
|
);
|
2023-03-15 19:03:55 +11:00
|
|
|
}
|