comparison styles.css @ 0:1d62de03829d draft

"planemo upload commit c6cd06d44dce1eef9136017289d362f144687dc1"
author gregor.m
date Mon, 23 Nov 2020 13:31:47 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:1d62de03829d
1
2 body{ margin:10 100; background:whitesmoke; }
3 /*body{ margin:10 100; background:darkslategrey; }*/
4 .center{
5 display: block;
6 margin-left: auto;
7 margin-right: auto;
8 width: 40%;}
9
10 /* matplotlib output at 1600x1200 */
11 .distr_gallery {
12 display: grid;
13 margin: 0 auto;
14 text-align: center;
15 /* border: 1px dashed rgba(4, 4, 4, 0.35); */
16 grid-template-columns: repeat(3,1fr);
17 grid-template-rows: 20vw;
18 grid-gap: 0px;
19 column-gap: 0px
20 }
21 .distr_gallery__img {
22 width: 100%;
23 height: 100%;
24 object-fit: contain;
25 }
26
27
28 /* matplotlib output at 1600x1200 */
29 .snapshot_gallery {
30 display: grid;
31 margin: 0 auto;
32 border: 1px dashed rgba(4, 4, 4, 0.35);
33 text-align: center;
34 grid-template-columns: repeat(2,1fr);
35 grid-template-rows: repeat(2,20vw);
36 grid-gap: 5px;
37 }
38 .snapshot_gallery__img {
39 width: 100%;
40 height: 100%;
41 object-fit: contain;
42 }
43
44 #areaA {
45 background-color: lime;
46 }
47
48 #areaB {
49 background-color: yellow;
50 }