about summary refs log tree commit diff stats
path: root/data/maps/the_double_sided/rooms/Obverse Orange Front Area.txtpb
blob: 28ec55510effce4aecba7ef00335d593f328b5fd (plain) (blame)
1
2
3
4
5
6
7
8
name: "Obverse Orange Front Area"
panels {
  name: "UP"
  path: "Panels/Maze/panel_2"
  clue: "up"
  answer: "down"
  symbols: SUN
}
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

#banner {
  background-color: #7bf;

  a {
    display: inline-block;
    text-decoration: none;
    font-size: 2em;
    margin: .25em 1em;

    &, &:visited {
      color: black;
    }
  }
}

#container {
  display: flex;
  flex-direction: row;
  flex: 1;
}

#sidebar {
  width: 12%;
  background-color: #333;
  margin: 0;
  padding: 1em 0;

  .major {
    display: block;
    color: white;

    &.active {
      background-color: #648;
    }

    &.inactive {
      .minors {
        display: none;
      }
    }

    a {
      display: block;
      text-decoration: none;

      &, &:visited {
        color: #ddd;
      }
    }

    .minors {
      display: block;
      background-color: #666;
    }

    .minor {
      list-style-type: none;
      font-size: small;
    }

    .major-link, .minors {
      padding: .25em 1em;
    }
  }
}

#main {
  width: 88%;
  padding: 1em;
  background-color: #eee;
}

#blog-form {
  display: flex;

  fieldset {
    border: 0;
  }

  #content {
    width: 77%;
  }

  #details {
    width: 23%;
    display: flex;
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }

  .title-field {
    label {
      display: none;
    }

    input {
      width: 100%;
      font-size: 1.5em;
      box-sizing: border-box;
    }
  }

  .slug-field {
    display: flex;
    font-size: 0.75em;
    margin-bottom: 1em;

    input {
      padding: 0;
      border: 0;
      color: #666;
      width: 100%;
      box-sizing: border-box;
      background-color: #eee;
      text-decoration: underline;

      &:focus {
        outline: 0;
      }
    }
  }

  .body-field {
    label {
      display: none;
    }
  }
}

#entries {
  border-spacing: 0;
  width: 100%;

  th {
    text-align: left;
    padding: .25em;
    font-weight: normal;
    background-color: #35a;
    color: #eee;
  }

  tr {
    &.even {
      background-color: #fff;
    }

    &.odd {
      background-color: #edf;
    }
  }

  td {
    padding: .25em;
  }
}

.details-module {
  background-color: white;
  border-radius: 5px;
  padding: .5em;
  margin-bottom: 1em;
}

.should-create-record-field {
  label {
    font-size: .75em;
  }
}

.record-description-field {
  display: none;
  margin-top: 1em;

  textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
  }
}

#errors {
  padding-left: 0;
  border: 2px solid red;

  h3 {
    margin: 0 0 .25em 0;
    text-align: center;
  }

  ul {
    margin: 0;
    padding-left: 1em;
    font-size: 0.75em;
  }

  li {
    display: block;
  }
}

#flash {
  display: inline-block;
  color: black;
  background-color: white;
  padding: .5em .75em;
  font-size: .8em;
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
  vertical-align: text-bottom;
}

.flash-tag {
  font-weight: bold;
}

.flash-alert {
  border-left: 5px solid red;
}

.flash-notice {
  border-left: 5px solid green;
}