Skip to content

Commit

Permalink
uploading frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
altairalimzhanov committed Nov 12, 2022
1 parent 6882696 commit 0c0200f
Show file tree
Hide file tree
Showing 3 changed files with 108 additions and 0 deletions.
Binary file added assets/background.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 42 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!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">
<title>Interview Preparation | Expert System</title>
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<header>
<a href="/"><h1 class="title">Interview Preparation Expert System</h1></a>
</header>
<div class="container">
<!-- <h1 class="title">Welcome!</h1> -->
<textarea name="cli" id="cli" class="cli" readonly>
Expert > Hey, what's your name? 🙋‍♂️

> Meirbek

Expert > Nice to meet you, Meirbek 😇 I am Alex...
Expert > I will be your instructor during your coding interview preparation journey 🙌
Expert > Which of the following coding platforms do you use the most?

(a) leetcode
(b) codeforces

Meirbek > a

Expert: Cool, could you enter your leetcode username?

Meirbek > meirbnb

Expert > Okay, so far you have solved {count} problems... Pretty impressive 🤩

Expert > I am making an action plan based on your leetcode progress...</textarea>
</div>
<footer>
<a href="https://github.com/meirbnb/ipes" target="_blank">@meirbnb</a>
</footer>
</body>
</html>
66 changes: 66 additions & 0 deletions styles/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono&family=Ubuntu&display=swap');

*{
font-family: 'Ubuntu', sans-serif;
}

a{
text-decoration: none;
color: #639c72;
}

body{
background-image: url('../assets/background.jpg');
background-position: center left;
background-size: 40%;
background-repeat: no-repeat;;
background-attachment: fixed;
background-position-x: 15%;
}

header .title{
text-align: center;
margin: 7vh;
font-size: 5vh;
color: #639c72;
}

.container{
position: fixed;
background-color: #C7F2D4;
width: 90vh;
bottom: 15vh;
right: 10vh;
top: 20vh;
font-size: 2vh;
border-radius: 2vh;
}

.container .title{
text-align: center;
color: #525B62;
}

.container .cli{
width: 85vh;
height: 60vh;
font-size: 2vh;
font-weight: bold;
font-family: 'JetBrains Mono', monospace;
background: transparent;
resize: none;
outline: none;
border: none;
padding: 2vh;
color: #525B62;
}

footer{
position: absolute;
bottom: 2vh;
left: 0px; right: 0px;
font-size: 2.2vh;
font-weight: 600;
text-align: center;
color: #639c72;
}

0 comments on commit 0c0200f

Please sign in to comment.