Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5502
}
Binary file added public/version2/css_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/version2/exit_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/version2/html_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
58 changes: 58 additions & 0 deletions public/version2/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="./stye.css">
<title>Codera</title>
</head>
<body>

<!-- Nav-->
<div class="nav">
<ul>
<h1>Coder - Your Coding Arena</h1>
</ul>
<ul class="navIcon">
<li class="navIcon whitebg" style="background-color: white;"><i class="fa fa-refresh"></i></li>
<li style="margin-left: 3rem;" class="navIcon redbg exit" style="background-color: red;"><img src="./exit_icon.png" alt="" width="60%"></li>
</ul>
</div>

<div class="tables">
<div class="inputs" style="margin-left: 5px;">
<div class="inputHeader">
<p class="inpIcon">
<img src="./html_logo.png" alt="" width="15%">
</p>
<p>HTML</p>
<p class="inpSecIcon">-</p>
</div>
<textarea></textarea>
</div>
<div class="inputs">
<div class="inputHeader">
<p class="inpIcon">
<img src="./css_logo.png" alt="" width="20%">
</p>
<p>CSS</p>
<p class="inpSecIcon" >-</p>
</div>
<textarea></textarea>
</div>
<div class="inputs" style="margin-right: 5px;">
<div class="inputHeader">
<p class="inpIcon">
<img src="./js_logo.png" alt="" width="15%">
</p>
<p>JavaScript</p>
<p class="inpSecIcon">-</p>
</div>
<textarea></textarea>
</div>
</div>

</body>
</html>
Binary file added public/version2/js_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
94 changes: 94 additions & 0 deletions public/version2/stye.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
*{
padding: 0;
margin: 0;
font-family: sans-serif;
}

body{
overflow: hidden;
}

.nav{
display: grid;
grid-template-columns: 3fr 1fr;
background-color: rgba(45, 52, 54, 0.8);
}

.nav ul{
text-align: center;
padding: 2rem 0;
color: white;
}

.navIcon{
list-style-type: none;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}

.navIcon li{
width: 3rem;
height: 3rem;
color: black;
border-radius: 50%;
transition: 0.5s ease;
cursor: pointer;
}
.navIcon i{
font-size: 1.5rem;
font-weight: lighter;
}
.redbg{
background-color: red;
}
.whitebg{
background-color: white;
}
.navIcon img{
padding-right: 5px;
transform: rotate(180deg);
padding-right: 0px;
}

.tables{
height: 50vh;
background-color: rgba(45, 52, 54, 0.8);
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 1rem;
}
.tables textarea{
resize: none;
height: 40vh;
padding-left: 5px;
background-color: rgba(45, 52, 54, 0.4);
border: none;
width: 99%;
color: white;
font-size: 1rem;
}
.tables textarea:focus{
outline: none;
}

.inputHeader{
background-color: rgba(45, 52, 54, 0.9);
display: grid;
grid-template-columns: repeat(3, 1fr);
text-align: center;
padding: 10px 0;
color: white;
border-radius: 5px 5px 0 0 ;
}

.inpIcon{
text-align: left;
padding-left: 1rem ;
}

.inpSecIcon{
text-align: right;
padding-right: 1rem ;
}