blob: ca052daccda31f8634908aa2918372986897f0ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
* {
--size: 20em;
/*Image size*/
}
#root {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(20, 1fr);
grid-gap: 2em;
}
.Frame {
outline: grey 0.5em auto;
}
.Frame h1 {
display: inline;
align-content: center;
font-family: 'Poppins', sans-serif;
}
.Frame a:link,
.Frame a:visited {
color: black;
}
.Frame img {
display: block;
background-size: cover;
width: 38em;
}
|