|
|
| (19 intermediate revisions by 2 users not shown) |
| Line 91: |
Line 91: |
| height: 100px; | | height: 100px; |
| } | | } |
| }
| |
|
| |
| .encounter {
| |
| border: 1px solid #3e3e3e;
| |
| max-width: 640px;
| |
| margin-left: auto;
| |
| margin-right: auto;
| |
| width: 100%;
| |
| margin-bottom: 3em;
| |
| border-collapse: collapse;
| |
| }
| |
|
| |
| .encounterContainer {
| |
| position: relative;
| |
| }
| |
|
| |
| .encounterTimeParameters {
| |
| position: absolute;
| |
| top: .5rem;
| |
| left: .5rem;
| |
| background: rgba(0, 0, 0, 0.25);
| |
| border-radius: 4px;
| |
| display: flex;
| |
| }
| |
|
| |
| .encounterStatusParameters {
| |
| position: absolute;
| |
| top: .5rem;
| |
| right: .5rem;
| |
| background: rgba(0, 0, 0, 0.25);
| |
| border-radius: 4px;
| |
| display: flex;
| |
| }
| |
|
| |
| .timeParameter, .seasonParameter, .weatherParameter {
| |
| cursor: help;
| |
| height: 24px;
| |
| width: 24px;
| |
| margin: .25rem;
| |
| }
| |
|
| |
| .encounterHeader p {
| |
| font-weight: bold;
| |
| color: white;
| |
| }
| |
|
| |
| .encounterHeader {
| |
| background-color: #3a5f70;
| |
| padding: .5rem;
| |
| }
| |
|
| |
| .encounterPrompt {
| |
| padding: 0.5rem;
| |
| background-color: #dbdbdb;
| |
| border: 1px solid #3e3e3e;
| |
| }
| |
|
| |
| .encounterPrompt p {
| |
| font-weight: bold;
| |
| }
| |
|
| |
| .encounterOption {
| |
| width: 20%;
| |
| background-color: #bfbfbf;
| |
| padding: 0.5rem;
| |
| text-align: center;
| |
| vertical-align: middle;
| |
| border: 1px solid #3e3e3e;
| |
| border-bottom: none;
| |
| }
| |
|
| |
| .encounterOption p {
| |
| font-weight: bold;
| |
| }
| |
|
| |
| .encounterResult {
| |
| width: 50%;
| |
| padding: 0.5rem;
| |
| vertical-align: middle;
| |
| border: 1px solid #3e3e3e;
| |
| }
| |
|
| |
| .encounterReward {
| |
| width: 30%;
| |
| padding: 0.5rem;
| |
| vertical-align: middle;
| |
| border: 1px solid #3e3e3e;
| |
| }
| |
|
| |
| .encounterReward img {
| |
| max-width: 32px;
| |
| }
| |
|
| |
| .timeParameter::after {
| |
| background: rgba(0,0,0,0.3);
| |
| border-radius: 4px;
| |
| color: #FFF;
| |
| content: attr(aria-label);
| |
| font-weight: bold;
| |
| padding: 0.1em;
| |
| position: absolute;
| |
| right: -1.8em;
| |
| top: 2.6em;
| |
| white-space: nowrap;
| |
| z-index: 9999;
| |
| text-align: left;
| |
| display: none;
| |
| }
| |
|
| |
| .timeParameter:hover:after {
| |
| display: block;
| |
| }
| |
|
| |
| .seasonParameter::after {
| |
| background: rgba(0, 0, 0, 0.3);
| |
| border-radius: 4px;
| |
| color: #FFF;
| |
| content: attr(aria-label);
| |
| font-weight: 700;
| |
| padding: 3px 12px;
| |
| position: absolute;
| |
| right: -78px;
| |
| top: 1px;
| |
| white-space: nowrap;
| |
| z-index: 9999;
| |
| }
| |
|
| |
| .weatherParamter::after {
| |
| background: rgba(0, 0, 0, 0.3);
| |
| border-radius: 4px;
| |
| color: #FFF;
| |
| content: attr(aria-label);
| |
| font-weight: 700;
| |
| padding: 3px 12px;
| |
| position: absolute;
| |
| right: -78px;
| |
| top: 1px;
| |
| white-space: nowrap;
| |
| z-index: 9999;
| |
| }
| |
|
| |
| .optionLog {
| |
| background-color: #bfbfbf;
| |
| padding: 0rem 0rem 0rem 0.5rem;
| |
| height: 0px;
| |
| border-top: none;
| |
| text-align: left;
| |
| vertical-align: bottom;
| |
| }
| |
|
| |
| .logButton {
| |
| height: 0px;
| |
| }
| |
|
| |
| .logButton img {
| |
| width: 20px;
| |
| position: relative;
| |
| bottom: 3em;
| |
| }
| |
|
| |
| .logButton:after {
| |
| background: rgba(0, 0, 0, 0.3);
| |
| border-radius: 4px;
| |
| color: #FFF;
| |
| content: attr(aria-label);
| |
| font-weight: 700;
| |
| padding: 3px 12px;
| |
| position: absolute;
| |
| right: -78px;
| |
| top: 1px;
| |
| white-space: nowrap;
| |
| z-index: 9999;
| |
| }
| |
|
| |
|
| |
| .logButton:hover:after {
| |
| display: block;
| |
| } | | } |