Files
Atay-Makhzan/web_src/css/standalone/swagger.css
T

47 lines
658 B
CSS
Raw Normal View History

*,
*::before,
*::after {
2023-05-28 23:37:34 +02:00
box-sizing: border-box;
}
body {
margin: 0;
background: #fff;
}
.swagger-back-link {
color: #4990e2;
text-decoration: none;
position: absolute;
top: 1rem;
right: 1.5rem;
display: flex;
align-items: center;
}
@media (prefers-color-scheme: dark) {
body {
background: #1c2022;
}
.swagger-back-link {
color: #51a8ff;
}
.swagger-ui table.headers td {
color: #aeb4c4; /** fix low contrast */
}
}
2023-05-28 23:37:34 +02:00
.swagger-back-link:hover {
text-decoration: underline;
}
.swagger-back-link svg {
color: inherit;
2022-02-01 10:21:08 -08:00
fill: currentcolor;
2023-03-15 03:20:19 +01:00
margin-right: 0.5rem;
}
2023-05-28 23:37:34 +02:00
2026-01-26 10:34:38 +08:00
.swagger-spec-content {
display: none;
}