avm99963 | 63687f4 | 2020-10-01 01:16:38 +0200 | [diff] [blame] | 1 | html { |
| 2 | min-width: auto; |
delefme | dbd4a3c | 2020-10-09 09:18:09 +0200 | [diff] [blame] | 3 | touch-action: manipulation; |
avm99963 | 63687f4 | 2020-10-01 01:16:38 +0200 | [diff] [blame] | 4 | } |
| 5 | |
Andreu Huguet | 898768a | 2020-09-29 00:30:23 +0200 | [diff] [blame] | 6 | .buttons.grid { |
| 7 | display: flex; |
| 8 | flex-direction: row; |
| 9 | flex-wrap: wrap; |
| 10 | |
| 11 | justify-content: center; |
| 12 | align-items : center; |
| 13 | } |
| 14 | |
| 15 | .buttons.grid .button { |
| 16 | flex: 1 0 20%; |
| 17 | margin: 10px; |
| 18 | padding: 40px 20px; |
| 19 | line-height: 0px; |
| 20 | } |
| 21 | |
| 22 | .buttons.grid .complex-button { |
| 23 | flex: 1 0 34%; |
| 24 | margin: 15px 10px; |
avm99963 | a83f32a | 2020-10-09 00:39:17 +0200 | [diff] [blame] | 25 | min-width: min(100%, 300px); |
| 26 | } |
| 27 | |
| 28 | .buttons.grid .complex-button.is-selected .message-header { |
| 29 | background-color: #3273dc; |
| 30 | color: #fff; |
| 31 | } |
| 32 | |
| 33 | .buttons.grid .complex-button.is-selected .message-body.is-selected { |
| 34 | background-color: #eef3fc; |
| 35 | color: #2160c4; |
| 36 | } |
| 37 | |
| 38 | .rooms-container { |
| 39 | display: flex; |
| 40 | flex-direction: row; |
| 41 | } |
| 42 | |
| 43 | .rooms-container .message-body { |
| 44 | border-width: 0; |
| 45 | border-top-left-radius: 0; |
| 46 | border-top-right-radius: 0; |
| 47 | flex-grow: 1; |
| 48 | |
| 49 | cursor: pointer; |
| 50 | } |
| 51 | |
| 52 | .rooms-container .message-body:not(:last-child) { |
| 53 | border-bottom-right-radius: 0; |
| 54 | border-right: solid 1px #4a4a4a; |
Andreu Huguet | 898768a | 2020-09-29 00:30:23 +0200 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | .section { |
| 58 | padding-top: 1rem; |
| 59 | } |
| 60 | |
| 61 | #dev-mode { |
avm99963 | 63687f4 | 2020-10-01 01:16:38 +0200 | [diff] [blame] | 62 | background: #d23f31; |
| 63 | border: 1px solid #3e2723; |
| 64 | box-shadow: 0 0 4px rgba(0,0,0,.14), 0 2px 4px rgba(0,0,0,.28); |
| 65 | color: #fff; |
| 66 | font-size: 10px; |
| 67 | font-weight: 700; |
| 68 | right: 20px; |
| 69 | line-height: 18px; |
| 70 | margin: -9px -50px; |
| 71 | opacity: .87; |
| 72 | position: absolute; |
| 73 | text-align: center; |
| 74 | text-shadow: 1px 1px 0 #4e342e; |
| 75 | top: 20px; |
| 76 | transform: rotate(45deg); |
| 77 | width: 100px; |
| 78 | z-index: 99; |
| 79 | cursor: pointer; |
Andreu Huguet | 898768a | 2020-09-29 00:30:23 +0200 | [diff] [blame] | 80 | } |
| 81 | |
avm99963 | 2a3767d | 2020-10-01 01:38:25 +0200 | [diff] [blame] | 82 | #fme-maps-container h4 { |
| 83 | font-weight: bold; |
| 84 | } |
| 85 | |
| 86 | .maps { |
| 87 | display: flex; |
| 88 | flex-direction: row; |
| 89 | flex-wrap: wrap; |
| 90 | justify-content: center; |
| 91 | align-items: center; |
| 92 | } |
| 93 | |
| 94 | .maps .map { |
| 95 | display: flex; |
| 96 | flex-direction: column; |
| 97 | justify-content: center; |
| 98 | align-items: center; |
| 99 | max-width: 500px; |
| 100 | |
| 101 | margin: 8px; |
| 102 | } |
| 103 | |
| 104 | .maps .map .map--label { |
| 105 | font-weight: 300; |
| 106 | margin-top: 2px; |
| 107 | margin-bottom: 2px; |
| 108 | } |