aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/assets/css/shell.css
blob: fcfa5d1bd159d7e5d60322e896dccdd5300c2e57 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                                           




                        

            



                                                                             




                             
                            














                                               
.shell pre {
  /* Reset Bootstrap's settings for <pre>. */
  margin: 0;
  border-radius: 0;
}

/* WTF is this? I somehow came up with it, but I hope there's a better way.
 * 10.5px is the standard bottom margin for <pre>s. */
.shell {
  margin-bottom: 10.5px;
}
.shell + .shell {
  margin-top: -10.5px;
}

.shell > div {
  display: flex;
  overflow: auto;
}
.shell-mark {
  /* Don't shrink it. */
  flex: none;
}
.shell-cmd {
  flex: 1;
  /* The combination of overflow values disables the scrollbar for .shell-cmd
   * and assigns it to the outer div instead, which looks nicer. */
  overflow: visible;
}

/* Styling, yo. */
.shell-cmd, .shell-mark {
  border-width: 0 0 medium 0;
  background-color: #f0f0f0;
  /* Color the border in the color of grass. */
  border-color: #008567;
}
.shell-out {
  border-width: 0 0 thin 0;
}
.shell-cmd {
  padding-left: 0;
}
.shell-mark {
  font-weight: bold;
  /* I like colors. */
  color: #20004b;
  user-select: none;
}