blob: 893193460fd9118e7726321f9070560a56277657 [file] [log] [blame]
Andreu Huguet898768a2020-09-29 00:30:23 +02001.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
26#dev-mode {
27 background: #d23f31;
28 border: 1px solid #3e2723;
29 box-shadow: 0 0 4px rgba(0,0,0,.14), 0 2px 4px rgba(0,0,0,.28);
30 color: #fff;
31 font-size: 10px;
32 font-weight: 700;
33 right: 20px;
34 line-height: 18px;
35 margin: -9px -50px;
36 opacity: .87;
37 position: absolute;
38 text-align: center;
39 text-shadow: 1px 1px 0 #4e342e;
40 top: 20px;
41 transform: rotate(45deg);
42 width: 100px;
43 z-index: 99;
44 cursor: pointer;
45}
46
47#dev-mode.hidden {
48 display: none;
49}