File size: 2,297 Bytes
cf86710 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | .browserWindow {
min-height: 320px;
border: 1px solid var(--ifm-color-emphasis-200);
border-radius: var(--ifm-pre-border-radius);
margin-bottom: var(--ifm-leading);
background: var(--ifm-color-emphasis-200);
}
[data-theme="dark"] .browserWindow {
border: 1px solid var(--ifm-color-emphasis-100);
background: var(--ifm-color-emphasis-100);
}
.browserWindowHeader {
align-items: center;
display: flex;
padding: 0.5rem 1rem;
border-radius: var(--ifm-pre-border-radius);
background: var(--ifm-color-emphasis-200);
}
[data-theme="dark"] .browserWindowHeader {
background: var(--ifm-color-emphasis-100);
}
.row::after {
content: "";
display: table;
clear: both;
}
.buttons {
white-space: nowrap;
}
.right {
align-self: center;
width: 10%;
}
.browserWindowAddressBar {
flex: 1 0;
margin: 0 1rem 0 0.5rem;
border-radius: var(--ifm-pre-border-radius);
background-color: var(--ifm-pre-background);
color: var(--ifm-color-gray-800);
padding: 5px 15px;
font:
400 13px Arial,
sans-serif;
user-select: none;
}
.sourceLink {
margin-left: auto;
border-radius: var(--ifm-pre-border-radius);
background-color: var(--ifm-pre-background);
border: 1px solid var(--ifm-color-emphasis-200);
color: var(--ifm-link-color);
display: inline-flex;
align-items: center;
font:
600 12px var(--ifm-font-family-base);
padding: 4px 10px;
text-decoration: none;
white-space: nowrap;
}
[data-theme="dark"] .sourceLink {
border-color: var(--ifm-color-emphasis-300);
}
.sourceLink:hover,
.sourceLink:focus-visible {
text-decoration: underline;
}
.sourceLink::after {
content: none;
}
.sourceLink svg {
display: none;
}
.dot {
margin-right: 6px;
margin-top: 4px;
height: 12px;
width: 12px;
border-radius: 50%;
display: inline-block;
}
.browserWindowMenuIcon {
margin-left: auto;
}
.bar {
width: 17px;
height: 3px;
margin: 3px 0;
display: block;
}
.browserWindowBody {
background-color: var(--ifm-color-emphasis-0);
border-bottom-left-radius: inherit;
border-bottom-right-radius: inherit;
padding: 2rem 2rem;
display: flex;
justify-content: center;
}
@media (max-width: 768px) {
.browserWindowBody {
justify-content: flex-start;
}
}
.overflow {
width: 100%;
overflow: auto;
}
|