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