-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (49 loc) · 802 Bytes
/
style.css
File metadata and controls
49 lines (49 loc) · 802 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
46
47
48
49
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
height: 97vh;
display: flex;
}
.code-area {
display: flex;
flex-direction:column;
width: 50%;
border-right:1px solid #555;
}
.code-area textarea {
resize: none;
outline: none;
width: 100%;
height: 33.33%;
font-size: 18px;
padding: 10px;
}
.preview-area {
width: 50%;
}
.preview-area iframe {
width: 100%;
height: 100%;
border: none;
}
.header {
position : fixed;
right: 0;
top: 0;
width: 100%;
background-color: Black;
color: white;
text-align: center;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: Black;
color: white;
text-align: center;
}