-
Notifications
You must be signed in to change notification settings - Fork 90
/
view.html
59 lines (44 loc) · 982 Bytes
/
view.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
<!DOCTYPE html>
<html lang=en>
<head>
<meta charset=UTF-8>
<title>Build view</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font: 0.75em/1.5 system-ui, sans-serif;
}
html {
background-color: #f9f9f9;
color: #333;
}
body {
padding: 1.5rem;
}
iframe {
border: none;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
float: left;
margin-right: 1.5rem;
margin-bottom: 1.5rem;
resize: both;
}
hr {
clear: both;
border: 1px solid transparent;
border-top-color: #eee;
border-bottom-color: #fff;
margin-bottom: 1.5rem;
}
</style>
</head>
<body>
<iframe src="/code-reviews/?123" width=480 height=720></iframe>
<iframe src="/code-reviews/?123" width=720 height=480></iframe>
<hr />
<iframe src="/?1234" width=480 height=720></iframe>
<iframe src="/?1234" width=720 height=480></iframe>
</body>
</html>