123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- p.contentOld {
- color: $oldFontColor;
- &:hover {
- color: $mainFontColor;
- }
- }
- p.contentOld , p.content {
- text-indent: 1rem;
- text-align: justify;
- padding: 0.5rem;
- padding-left: 1.6rem;
- padding-right: 1.6rem;
- &.centered {
- text-indent: 0px;
- text-align: center;
- }
- }
- .textIndenter{
- margin-right: 1rem;
- }
- div.choiceContainer {
- padding-bottom: 0.8rem;
- &:hover {
- background-color: rgba(10,10,80,.05);
- }
- }
- .roundButton {
- padding: 0.3rem;
- @extend .unselectable;
- margin: 0.8rem;
- margin-bottom: 0.3rem;
- margin-top: 0.3rem;
- border: solid 1px $linkColor;
- border-radius: 1rem;
- background-color: #fff;
- &[data-shortcut]:before {
- content: attr(data-shortcut) ") ";
- font-weight: bold;
- color: $linkColor;
- }
- &:hover {
- cursor: pointer;
- background-color: #eeeeff;
- border-color: $linkHoverColor;
- &[data-shortcut]:before {
- color: $linkHoverColor;
- }
- }
- &:active {
- background-color: #c8c8ff;
- border-color: $linkActiveColor;
- &[data-shortcut]:before {
- color: $linkActiveColor;
- }
- }
- }
- p.choice {
- text-indent: 0.5rem;
- text-align: justify;
- @extend .roundButton;
- &.picked {
- color: $oldFontColor;
- }
- &.small {
- display: inline-block;
- padding-right: 1rem;
- margin: 0px;
- margin-right: 0.5rem;
- }
- }
- .combatChoicesContainer {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- justify-content: center;
- align-content: stretch;
- align-items: stretch;
- }
- .combatChoice {
- flex: 0 0 auto;
- align-self: auto;
- overflow: hidden;
- @extend .roundButton;
- padding: 0.6em;
- margin: 0.3em;
- }
- p.turnStart {
- display: flex;
- flex-basis: 100%;
- align-items: center;
- font-size: 0.8rem;
- font-weight: bold;
- line-height: 1em;
- &::before {
- margin-right: 10px;
- }
- &::after {
- margin-left: 10px;
- }
- &::before, &::after {
- content: "";
- flex-grow: 1;
- border-bottom: solid 1px rgba(180, 0, 0, 0.6);
- }
- }
- .horFlex {
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- justify-content: space-around;
- align-content: stretch;
- align-items: center;
- }
- .horFlexColumn {
- flex: 0 1 auto;
- width: 50%;
- align-self: auto;
- }
- b.action {
- color: $actionColor;
- &::before{
- content: " *";
- }
- &::after {
- content: "* ";
- }
- }
|