Files
onspring-api-docs/src/app/components/CodeSnippet.module.css
T

87 lines
1.5 KiB
CSS
Raw Normal View History

.snippetContainer {
border-radius: 10px;
background-color: #0b3766;
margin-top: 1rem;
width: 100%;
}
.snippetHeader {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #194488;
padding: 0.5rem 1rem;
border-top-right-radius: 10px;
border-top-left-radius: 10px;
font-size: 0.8rem;
}
2023-04-09 23:13:02 -05:00
.snippetContent>pre {
overflow: auto;
padding: 1rem;
scrollbar-color: #043160 #0b3766;
max-height: calc(100vh - 280px);
2023-04-09 23:13:02 -05:00
}
.snippetContent>pre::-webkit-scrollbar {
background-color: #0b3766;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
.snippetContent>pre::-webkit-scrollbar-thumb {
background-color: #043160;
border-radius: 10px;
}
@-moz-document url-prefix() {
.snippetContent>pre {
margin-right: 1rem;
}
}
.copyButtonContainer {
position: relative;
}
.copyButton {
background-color: #194488;
border: none;
color: white;
border-radius: 5px;
font-size: 0.8rem;
cursor: pointer;
}
.copyButton:hover {
color: #ee7203;
}
.tooltip {
position: absolute;
display: block;
top: 50%;
left: 50%;
transform: translate(-50%, -175%);
white-space: nowrap;
background-color: #0b3766;
padding: 0.5rem;
z-index: 100;
box-shadow: 0 0 2px 0.2px #05254a;
border-radius: 0.25rem;
width: 100px;
text-align: center;
}
.tooltip::before {
content: "";
position: absolute;
border: 0.5rem solid transparent;
border-top: 0.5rem solid #0b3766;
2023-04-10 10:03:05 -05:00
top: 97%;
2023-04-09 23:13:02 -05:00
left: 2.55rem;
}
.tooltipHidden {
display: none;
}