-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
59 lines (57 loc) · 1.21 KB
/
styles.css
File metadata and controls
59 lines (57 loc) · 1.21 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
body{
width: 99%;
height: 99%;
text-align: center;
background-color: black;
}
iframe{
width: 99%;
height: 99%;
}
.wrapper1{
display: inline-block;
}
.container{
border: solid 1px black;
height: 95vh;
width: 99vw;
display: grid;
grid-template-columns: repeat(8, 1fr);
grid-template-rows: repeat(5, 1fr);
grid-template-areas:
"five five five five five three three three"
"five five five five five three three three"
"five five five five five three three three"
"five five five five five one-a two two"
"five five five five five one-b two two"
}
.item-5{
border-radius: 10px;
grid-area: five;
background-color: grey;
border: solid 1px black;
}
.item-3{
border-radius: 10px;
grid-area: three;
background-color: grey;
border: solid 1px black;
}
.item-2{
border-radius: 10px;
grid-area: two;
background-color: grey;
border: solid 1px black;
}
.item-1a{
border-radius: 10px;
grid-area: one-a;
background-color: grey;
border: solid 1px black;
}
.item-1b{
border-radius: 10px;
grid-area: one-b;
background-color: grey;
border: solid 1px black;
}