BlazorMonaco/docs/css/app.css

61 lines
1.1 KiB
CSS
Raw Permalink Normal View History

2024-12-26 16:32:03 -05:00
html,
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
2020-04-24 19:12:00 +03:00
}
2024-12-26 16:32:03 -05:00
#app {
2020-04-24 19:12:00 +03:00
position: relative;
display: flex;
flex-direction: column;
}
2024-12-26 16:32:03 -05:00
@media (min-width: 768px) {
#app {
flex-direction: row;
2020-04-24 19:12:00 +03:00
}
}
2024-12-26 16:32:03 -05:00
.loading-progress-text {
flex: 1;
text-align: center;
margin-top: 50px;
font-size: 20px;
font-weight: bold;
2020-04-24 19:12:00 +03:00
}
2024-12-26 16:32:03 -05:00
.loading-progress-text:after {
content: var(--blazor-load-percentage-text, "Loading");
2020-04-24 19:12:00 +03:00
}
#blazor-error-ui {
background: lightyellow;
bottom: 0;
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
display: none;
left: 0;
padding: 0.6rem 1.25rem 0.7rem 1.25rem;
position: fixed;
width: 100%;
z-index: 1000;
}
2024-12-26 16:32:03 -05:00
#blazor-error-ui .dismiss {
cursor: pointer;
position: absolute;
right: 0.75rem;
top: 0.5rem;
2020-04-24 19:12:00 +03:00
}
2020-05-22 19:07:24 +03:00
.monaco-editor-container {
2023-08-26 22:49:11 -04:00
height: 500px;
2020-05-22 19:07:24 +03:00
border: 1px solid gray;
2024-12-26 16:32:03 -05:00
position: relative;
}
.decorationGlyphMarginClass {
background: red;
}
.decorationContentClass {
background: lightblue;
2020-05-22 19:07:24 +03:00
}