##// END OF EJS Templates
invoke css
invoke css

File last commit:

r19757:c9c051aa
r19758:1bd4f739
Show More
terminal.less
36 lines | 623 B | text/x-less | LessCssLexer
Jonathan Frederic
Use page backdrop with the terminal
r19757 body.terminal-app {
background: @page-backdrop-color;
Jonathan Frederic
Make terminal pretty
r19649
Jonathan Frederic
Use page backdrop with the terminal
r19757 #header {
background: @body-bg;
.box-shadow(@global-shadow);
.header-bar {
margin-bottom: -1px;
}
Jonathan Frederic
Make terminal pretty
r19649 }
Bussonnier Matthias
recompute dummy size dynamically + styling in css
r18489
Jonathan Frederic
Use page backdrop with the terminal
r19757 .terminal {
float: left;
font-family: monospace;
color: white;
background: black;
padding: @code_padding;
border-radius: @border-radius-base;
.box-shadow(@global-shadow-dark);
&, dummy-screen {
line-height: 1em;
font-size: @notebook_font_size;
}
}
.terminal-cursor {
color: black;
background: white;
}
Thomas Kluyver
Move terminal CSS into LESS file
r18493
Jonathan Frederic
Use page backdrop with the terminal
r19757 #terminado-container {
margin-top: @page-header-padding;
}
Thomas Kluyver
Move terminal CSS into LESS file
r18493 }