diff --git a/index.html b/index.html index bfc1042..7ef90d2 100644 --- a/index.html +++ b/index.html @@ -7,13 +7,14 @@ font-family: 'xenippa'; src: URL('img/xenippa.ttf') format('truetype'); } +.xnp {font-family: xenippa;} @font-face { font-family: 'ninifont'; src: URL('img/ninifont.otf') format('opentype'); } h1, h2, a, p {color: black;} -h1 {font-size: 300%;} -h2 {font-size: 275%;} +h1 {font-size: 300%;font-family: xenippa;} +h2 {font-size: 275%;font-family: xenippa;} p {font-size: 150%;} img { width: 100%; @@ -41,14 +42,33 @@ img { ". . . ."; justify-items: center; } + +#galerie { + display: grid; + grid-template-columns: 1fr 1fr 1fr; + grid-template-rows: auto; + grid-template-areas: + "aa ab ac" + "ba bb bc"; + justify-items: center; +} +#gal0 {grid-area: aa;} +#gal1 {grid-area: ab;} +#gal2 {grid-area: ac;} +#gal3 {grid-area: ba;} +#gal4 {grid-area: bb;} +#gal5 {grid-area: bc;} +.gal {margin: 2.5%;flex-grow: 1;} +.foot {display: inline-block;} +#counter {margin-left: 2%; margin-right: 2%;}
+ +