-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (83 loc) · 1.37 KB
/
style.css
File metadata and controls
103 lines (83 loc) · 1.37 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/* styling the code editor */
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background-color: #1d1e22;
overflow-x: hidden;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
nav {
background-color: black;
color: white;
text-align: center;
padding: 20px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
/* box-shadow: -1px 4px 5px 0px #fffdfd; */
margin-bottom: 25px;
}
.editor {
position: relative;
width: 100vw;
height: 100vh;
}
.editor #html-code {
width: 39%;
height: 30%;
position: absolute;
font-size: 18px;
padding: 10px;
}
.editor #css-code {
position: absolute;
width: 39%;
height: 30%;
top: 35%;
font-size: 18px;
padding: 10px;
}
.editor #js-code {
position: absolute;
bottom: 0;
width: 39%;
height: 30%;
font-size: 18px;
padding: 10px;
}
.editor #output {
position: absolute;
right: 0;
width: 60%;
height: 100vh;
background-color: #fffdfd;
font-size: 18px;
text-align: left;
}
.editor .heading {
position: absolute;
color: white;
}
.html {
top: -46px;
left: 10%;
margin: 20px;
}
.css {
bottom: 65%;
left: 12%;
}
.js {
bottom: 30%;
left: 10%;
}
.output {
right: 25%;
top: -25px;
}
footer {
text-align: center;
padding: 10px;
color: beige;
}