2023-06-06 11:21:30 +00:00
|
|
|
@tailwind base;
|
|
|
|
|
@tailwind components;
|
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
2023-06-06 01:33:54 +00:00
|
|
|
/**
|
|
|
|
|
* Any CSS included here will be global. The classic template
|
|
|
|
|
* bundles Infima by default. Infima is a CSS framework designed to
|
|
|
|
|
* work well for content-centric websites.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* You can override the default Infima variables here. */
|
|
|
|
|
:root {
|
2023-06-07 18:17:00 +00:00
|
|
|
--ifm-color-primary: #3b373c;
|
|
|
|
|
--ifm-color-primary-dark: #353236;
|
|
|
|
|
--ifm-color-primary-darker: #322f33;
|
|
|
|
|
--ifm-color-primary-darkest: #29272a;
|
|
|
|
|
--ifm-color-primary-light: #413d42;
|
|
|
|
|
--ifm-color-primary-lighter: #443f45;
|
|
|
|
|
--ifm-color-primary-lightest: #4d484e;
|
|
|
|
|
|
2023-06-07 20:05:47 +00:00
|
|
|
--ifm-background-color: #FFF8EC;
|
|
|
|
|
--ifm-background-surface-color: #E9E1D4;
|
2023-06-07 18:17:00 +00:00
|
|
|
|
2023-06-07 20:05:47 +00:00
|
|
|
--ifm-code-background: #FFFEFD;
|
|
|
|
|
--openapi-monaco-background-color-light: var(--ifm-code-background) !important;
|
2023-06-07 18:17:00 +00:00
|
|
|
--openapi-card-background-color: var(--ifm-code-background) !important;
|
2023-06-07 20:12:51 +00:00
|
|
|
|
|
|
|
|
/* Fix footer hover color */
|
|
|
|
|
--ifm-footer-link-hover-color: var(--ifm-color-gray-500);
|
2023-06-06 01:33:54 +00:00
|
|
|
}
|
|
|
|
|
|
2023-06-07 08:58:05 +00:00
|
|
|
|
2023-06-07 18:47:26 +00:00
|
|
|
.markdown a {
|
|
|
|
|
color: var(--ifm-color-success-darkest);
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-07 08:58:05 +00:00
|
|
|
.post a {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.post a::after {
|
|
|
|
|
content: "post";
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
position: relative;
|
|
|
|
|
top: 1px;
|
|
|
|
|
margin-right: -6px;
|
|
|
|
|
padding: 3px 6px;
|
|
|
|
|
border: 1px solid var(--ifm-color-warning);
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
color: black;
|
|
|
|
|
background: var(--ifm-color-warning);
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
line-height: 10px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
2023-06-07 20:05:47 +00:00
|
|
|
|
2023-10-14 08:31:32 +00:00
|
|
|
.get a {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.get a::after {
|
|
|
|
|
content: "get";
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
position: relative;
|
|
|
|
|
top: 1px;
|
|
|
|
|
margin-right: -6px;
|
|
|
|
|
padding: 3px 6px;
|
|
|
|
|
border: 1px solid var(--ifm-color-success);
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
color: white;
|
|
|
|
|
background: var(--ifm-color-success);
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
line-height: 10px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-07 20:05:47 +00:00
|
|
|
.Playground .monaco-editor {
|
|
|
|
|
padding-top: 15px;
|
|
|
|
|
}
|
2023-10-27 19:07:58 +00:00
|
|
|
|
|
|
|
|
.navbar__logo {
|
|
|
|
|
height: 28px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hero__title {
|
|
|
|
|
font-family: 'Azeret Mono';
|
|
|
|
|
}
|