File: terminal.less

package info (click to toggle)
jupyter-notebook 4.2.3-4~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 7,804 kB
  • sloc: python: 8,698; makefile: 240; sh: 74
file content (32 lines) | stat: -rw-r--r-- 567 bytes parent folder | download | duplicates (2)
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
.terminal-app {
  background: @page-backdrop-color;

  #header {
    background: @body-bg;
    .box-shadow(@global-shadow);
  }

  .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;
  }

  #terminado-container {
    margin-top: @page-header-padding;
  }
}