TiledViz
Loading...
Searching...
No Matches
base.css
1/* CSS variables (still testing) */
2/* :root{ */
3/* --default-icon-size:150; /\*px, but units will be added at computation*\/ */
4/* --width-left-part: 10%; */
5/* --width-right-part: 90%; */
6/* } */
7
8body
9{
10 background-color: #1c1414;
11}
12
13/* Flex container for menu and legend+grid (row) */
14/* body */
15/* { */
16/* background-color: black; */
17 /* color: green; */
18 /* display: flex; */
19 /* display: -webkit-flex; */
20 /* flex-wrap: wrap; */
21 /* flex-direction: row; */
22/* } */
23
24/* #left-column{ */
25/* } */
26
27/* Flex container for legend and grid (column) */
28/* #right-column{ */
29/* flex-grow: 1; */
30/* display: flex; */
31/* display: -webkit-flex; */
32/* flex-direction: column; */
33/* padding: 0px calc(var(--default-icon-size)*var(--default-zoom)*1px) Opx calc(var(--default-icon-size)*var(--default-zoom)*1px); */
34/* } */
35
36/* .main-grid */
37/* { */
38/* position:relative; */
39/* background-color: green; */
40/* color: blue; */
41/* /\*flex-grow: 1; /\* Relative to global page layout *\/ */
42/* /\*display:flex; /\* For tiles to be flexed *\/ */
43/* } */
44
45.main-legend-zone
46{
47/* position: fixed;*/
48 background-color: purple;
49 color: red;
50 display: flex;
51 display: -webkit-flex;
52 /* flex-direction: row; */
53 justify-content: space-between;
54}
55
56#legend
57{
58 /*position:fixed;*/
59}
60
61#notifications
62{
63/* position:fixed;*/
64 width:50%;
65 background-color:black;
66 color:lime;
67 right:0px;
68}
69
70/* .main-menu */
71/* { */
72/* position: fixed; */
73/* top: 0px; */
74/* left: 0px; */
75/* max-width: 150px; */
76/* display: flex; */
77/* flex-wrap: wrap; */
78/* flex-direction: column; */
79/* } */
80
81._modal-invite
82{
83 margin:auto;
84}
85
86#inviteModal
87{
88 width:80%;
89}
90
91.btn-default
92{
93 color: azure;
94 background-color:#948b7a;
95}
96.btn-default:hover
97{
98 color: green
99}
100
101.btn-selected.btn-secondary
102{
103 background-color:#5022ba;
104}
105.form-control
106{
107 display: inline;
108}