forked from NETTUTS/Inject-HTML-and-CSS-into-iFrame
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (37 loc) · 608 Bytes
/
style.css
File metadata and controls
45 lines (37 loc) · 608 Bytes
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
* {
margin: 0;
padding: 0;
}
body {
font-family: sans-serif;
}
textarea {
width: 100%;
margin: 20px auto 50px;
height: 200px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
border-color: #999;
}
.container {
background: #e3e3e3;
border-right: 1px solid white;
}
.grid {
width: 50%;
float: left;
overflow: hidden;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 30px 50px;
}
.output {
border-left: 1px solid #e3e3e3;
overflow: hidden;
}
.output iframe {
border: none;
width: 100%;
}