0
|
1 @import url("https://fonts.googleapis.com/css2?family=Acme&family=Oswald&display=swap");
|
|
2 html,
|
|
3 body {
|
|
4 width: 800px;
|
|
5 height: 480px;
|
1
|
6 overflow: hidden;
|
0
|
7 }
|
|
8 html {
|
|
9 background: gray;
|
|
10 }
|
|
11 body {
|
|
12 background: black;
|
|
13 color: #f8f8f2;
|
|
14 margin: 0;
|
|
15 font-size: 25px;
|
|
16 font-family: "Oswald", sans-serif;
|
|
17 display: flex;
|
|
18 flex-direction: column;
|
|
19 }
|
|
20 body > * {
|
|
21 /*outline: 1px orange solid;*/
|
|
22 }
|
1
|
23 iframe {
|
|
24 background: #8bbe9c;
|
|
25 display: inline-block;
|
|
26 position: fixed;
|
|
27 top: 3em;
|
|
28 left: 12em;
|
|
29 width: 480px;
|
|
30 height: 380px;
|
|
31 } |