Skip to content

Commit 2bcffd1

Browse files
Update
Co-Authored-By: JehanKandy <jehankandy@gmail.com>
1 parent 066a8d4 commit 2bcffd1

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

codeEditor/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</head>
99
<body>
1010
<div class="main-site">
11-
11+
<h1>Online Code Editor</h1>
1212
<div class="content">
1313
<div class="code-in">
1414
<label for="">HTML</label><br>
@@ -27,7 +27,7 @@
2727

2828
</div>
2929
<div class="">
30-
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Molestiae, iusto deserunt? Laboriosam assumenda officiis voluptates possimus iste porro magnam voluptate, harum deserunt distinctio ipsum? Minima impedit consectetur accusantium inventore aliquam.
30+
<iframe src="" id="result-code"></iframe>
3131
</div>
3232

3333

css/style.css

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
*{
22
font-family: 'Poppins', sans-serif;
33
}
4+
body{
5+
background: rgb(36, 36, 36);
6+
color: white;
7+
}
8+
h1{
9+
margin: 20px 0;
10+
text-align: center;
11+
color: white;
12+
}
413
.content{
514
display: flex;
615
justify-content: space-between;
@@ -11,4 +20,11 @@
1120
}
1221
textarea{
1322
width: 100%;
23+
resize: none;
24+
border-radius: 2px;
25+
background: rgb(20, 19, 19);
26+
color: white;
27+
border: none;
28+
margin: 20px 0;
29+
height: 40vh;
1430
}

0 commit comments

Comments
 (0)