stylesheet.scss 436 字节
Newer Older
J
Jason Park 已提交
1 2 3 4 5 6 7 8
@import "~/common/stylesheet/index";

.description_viewer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 16px;
  font-size: $font-size-large;
9
  overflow-y: auto;
J
Jason Park 已提交
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29

  li {
    margin: 10px 0px;
  }

  .complexity_type {
    font-weight: bold;
  }

  a {
    text-decoration: underline;
    cursor: pointer;
  }

  h3 {
    border-bottom: 1px solid rgb(81, 81, 81);
    padding: 5px;
    margin: 2px;
  }
}