BigW Consortium Gitlab

zen.scss 1013 Bytes
Newer Older
1 2
.zen-backdrop {
  &.fullscreen {
3
    background-color: $white-light;
4 5 6 7 8 9
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1031;
Robert Speicher committed
10

11 12 13 14
    textarea {
      border: none;
      box-shadow: none;
      border-radius: 0;
15
      color: $black;
16 17 18 19 20 21 22
      font-size: 20px;
      line-height: 26px;
      padding: 30px;
      display: block;
      outline: none;
      resize: none;
      height: 100vh;
23
      max-height: calc(100vh - 10px);
24
      max-width: 900px;
25
      margin: 0 auto 10px;
26
    }
Robert Speicher committed
27

28 29 30 31
    .zen-control-leave {
      display: block;
      position: absolute;
      top: 0;
32 33 34
    }
  }
}
35

36
.zen-control {
37
  padding: 0;
38
  color: $zen-control-color;
39 40 41 42 43
  background: none;
  border: 0;
}

.zen-control-full {
44
  color: $gl-text-color-secondary;
45 46 47 48 49

  &:hover {
    color: $gl-link-color;
    text-decoration: none;
  }
50 51 52 53 54 55 56 57 58 59 60
}

.zen-control-leave {
  display: none;
  color: $gl-text-color;
  position: absolute;
  right: 10px;
  padding: 5px;
  font-size: 36px;

  &:hover {
61
    color: $black;
62 63
  }
}