79 lines
1.3 KiB
CSS
79 lines
1.3 KiB
CSS
.logo.vanilla:hover {
|
|
filter: drop-shadow(0 0 2em #ffe21c);
|
|
}
|
|
:root {
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
|
|
color: #f6f6f6;
|
|
background-color: #2f2f2f;
|
|
|
|
font-synthesis: none;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-text-size-adjust: 100%;
|
|
}
|
|
|
|
.container {
|
|
height: 90vh;
|
|
margin: 0;
|
|
padding-top: 1vh;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: left;
|
|
text-align: left;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
justify-content: left;
|
|
}
|
|
.markdown_input
|
|
{
|
|
border-style: solid;
|
|
width: 49%;
|
|
height: 100%;
|
|
text-align: left;
|
|
float:left;
|
|
color: #f6f6f6;
|
|
background: #2f2f2f;
|
|
}
|
|
.rendered_markdown {
|
|
|
|
border-style: solid;
|
|
width: 49%;
|
|
height: 100%;
|
|
float:right;
|
|
text-align: left;
|
|
color: #f6f6f6;
|
|
background-color: #2f2f2f;
|
|
}
|
|
.main_editor{
|
|
width: 100%;
|
|
text-align: center;
|
|
font-size: 16px;
|
|
line-height: 18px;
|
|
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
color: #f6f6f6;
|
|
background-color: #2f2f2f;
|
|
}
|
|
h1 {
|
|
text-align: left;
|
|
line-height: 18px;
|
|
margin-top: 0.067em;
|
|
margin-bottom: 0.067em;
|
|
}
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
color: #f6f6f6;
|
|
background-color: #2f2f2f;
|
|
}
|
|
|
|
}
|