-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
77 lines (64 loc) · 1.13 KB
/
index.html
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Zoom Break</title>
<style>
html, body {
height: 100%;
margin: 0px;
padding: 0px;
overflow: hidden;
}
body {
display: flex;
flex-direction: row;
}
#left-column,
#right-column {
display: flex;
width: 50%;
height: 100%;
}
#left-column {
flex: 2;
border-right: 1px solid white;
}
#right-column {
flex: 1;
flex-direction: column;
}
#top-row,
#bottom-row {
display: flex;
width: 100%;
height: 50%;
}
#top-row {
flex: 1;
border-bottom: 1px solid white;
}
#bottom-row {
flex: 1;
}
iframe {
width: 100%;
height: 100%;
border: none;
}
</style>
</head>
<body>
<div id="left-column">
<iframe src="https://pollev.com/sjengle"></iframe>
</div>
<div id="right-column">
<div id="top-row">
<iframe src="textarea.html"></iframe>
</div>
<div id="bottom-row">
<iframe src="https://www.bigtimer.net/info?minutes=15"></iframe>
</div>
</div>
</body>
</html>