File size: 851 Bytes
0cb2777 |
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 |
/* TODO: CSS for plugin */
.codewindow {
overflow-wrap: anywhere;
margin-bottom: 36px;
font-size: 0.45em;
font-family: monospace;
background: white;
border-radius: 10px;
box-shadow: #26394d 0px 20px 30px -10px;
}
.codewindow .header {
display: flex;
background: #e2e8f0;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
padding-left: 16px;
gap: 16px;
height: 30px;
}
.codewindow .header .file {
margin-top: 5px;
padding-left: 20px;
padding-right: 20px;
display: flex;
background: white;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
height: 90%;
align-items: center;
gap: 4px;
}
.codewindow .textarea {
padding: 21px;
}
.codewindow .textarea .sourceCode {
background: unset;
border: unset;
font-size: unset;
}
.codewindow .textarea pre {
font-size: unset;
}
|