blob: ff91e364f04da3037901cc7e6d0e9c9397dc7523 [file] [log] [blame]
avm9996363687f42020-10-01 01:16:38 +02001html {
2 min-width: auto;
delefmedbd4a3c2020-10-09 09:18:09 +02003 touch-action: manipulation;
avm9996363687f42020-10-01 01:16:38 +02004}
5
Andreu Huguet898768a2020-09-29 00:30:23 +02006.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;
avm99963a83f32a2020-10-09 00:39:17 +020025 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 Huguet898768a2020-09-29 00:30:23 +020055}
56
57.section {
58 padding-top: 1rem;
59}
60
61#dev-mode {
avm9996363687f42020-10-01 01:16:38 +020062 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 Huguet898768a2020-09-29 00:30:23 +020080}
81
avm999632a3767d2020-10-01 01:38:25 +020082#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}