Andreu Huguet | 898768a | 2020-09-29 00:30:23 +0200 | [diff] [blame] | 1 | .buttons.grid { |
| 2 | display: flex; |
| 3 | flex-direction: row; |
| 4 | flex-wrap: wrap; |
| 5 | |
| 6 | justify-content: center; |
| 7 | align-items : center; |
| 8 | } |
| 9 | |
| 10 | .buttons.grid .button { |
| 11 | flex: 1 0 20%; |
| 12 | margin: 10px; |
| 13 | padding: 40px 20px; |
| 14 | line-height: 0px; |
| 15 | } |
| 16 | |
| 17 | .buttons.grid .complex-button { |
| 18 | flex: 1 0 34%; |
| 19 | margin: 15px 10px; |
| 20 | } |
| 21 | |
| 22 | .section { |
| 23 | padding-top: 1rem; |
| 24 | } |
| 25 | |
delefme | 0b808dc | 2020-09-30 11:51:39 +0200 | [diff] [blame] | 26 | .message-header { |
| 27 | text-transform:capitalize; |
| 28 | } |
| 29 | |
Andreu Huguet | 898768a | 2020-09-29 00:30:23 +0200 | [diff] [blame] | 30 | #dev-mode { |
| 31 | background: #d23f31; |
| 32 | border: 1px solid #3e2723; |
| 33 | box-shadow: 0 0 4px rgba(0,0,0,.14), 0 2px 4px rgba(0,0,0,.28); |
| 34 | color: #fff; |
| 35 | font-size: 10px; |
| 36 | font-weight: 700; |
| 37 | right: 20px; |
| 38 | line-height: 18px; |
| 39 | margin: -9px -50px; |
| 40 | opacity: .87; |
| 41 | position: absolute; |
| 42 | text-align: center; |
| 43 | text-shadow: 1px 1px 0 #4e342e; |
| 44 | top: 20px; |
| 45 | transform: rotate(45deg); |
| 46 | width: 100px; |
| 47 | z-index: 99; |
| 48 | cursor: pointer; |
| 49 | } |
| 50 | |
| 51 | #dev-mode.hidden { |
| 52 | display: none; |
delefme | 0b808dc | 2020-09-30 11:51:39 +0200 | [diff] [blame] | 53 | } |