Skip to content

Commit

Permalink
Merge pull request #11 from kicheev/rsschool-cv-html
Browse files Browse the repository at this point in the history
Empty CV
  • Loading branch information
kicheev authored Nov 25, 2024
2 parents cd5b061 + 49209ad commit 1fbdd1a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 361 deletions.
118 changes: 1 addition & 117 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,126 +3,10 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css"
integrity="sha512-5A8nwdMOWrSz20fDsjczgUidUBR8liPYU+WymTZP1lmY9G6Oc7HlZv156XqnsgNUzTyMefFTcsFH/tnJE/+xBg=="
crossorigin="anonymous" referrerpolicy="no-referrer">
<title>CV</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<nav>
<ul class="nav-list">
<li class="nav-item"><a href="#about" class="nav-link">About me</a></li>
<li class="nav-item"><a href="#contacts" class="nav-link">Contacts</a></li>
<li class="nav-item"><a href="#skills" class="nav-link">Skills</a></li>
<li class="nav-item"><a href="#code" class="nav-link">Code</a></li>
<li class="nav-item"><a href="#projects" class="nav-link">Projects</a></li>
<li class="nav-item"><a href="#education" class="nav-link">Education</a></li>
<li class="nav-item"><a href="#language" class="nav-link">Language</a></li>
</ul>
</nav>
<header class="left-side">
<div class="profile-text">
<div class="img-box">
<img src="https://storage-api.petstory.ru/resize/1000x1000x80/b3/49/7f/b3497faac7854078b24a28b06b4462c1.jpeg" alt="avatar" class="profile-avatar">
</div>
<h1>Kicheev Andrew
<br>
<span>Junior Front-End Developer</span>
</h1>
</div>

<div class="contacts" id="contacts">
<h2 class="title">Contacts</h2>
<ul>
<li>
<span class="icon"><i class="fa fa-map-marker" aria-hidden="true"></i></span>
<span class="text">Saint Petersburg, Russia</span>
</li>
<li>
<span class="icon"><i class="fa fa-envelope" aria-hidden="true"></i></span>
<span class="text">Email: <a href="mailto:kicheevandrey@gmail.com">kicheevandrey@gmail.com</a></span>
</li>
<li>
<span class="icon"><i class="fa fa-github-alt" aria-hidden="true"></i></span>
<span class="text">Github: <a href="https://github.com/kicheev">kichev</a></span>
</li>
<li>
<span class="icon"><i class="fa fa-telegram" aria-hidden="true"></i></span>
<span class="text">Telegram: <a href="https://t.me/kicheev" title="github">@kicheev</a></span>
</li>
</ul>
</div>
</header>

<main class="right-side">
<div class="about" id="about">
<h2 class="title">About me</h2>
<p>I am a beginner developer from St. Petersburg. I really want to get into the IT industry.</p>
</div>

<div class="about skills" id="skills">
<h2 class="title">Skills</h2>
<ul>
<li>
<div class="skill">Python</div>
<div class="percent">
<!--<div style="width: 60%;"></div>-->
</div>
</li>
<li>
<div class="skill">HTML5</div>
<div class="percent">
<!--<div style="width: 30%;"></div>-->
</div>
</li>
<li>
<div class="skill">CSS3</div>
<div class="percent">
<!--<div style="width: 20%;"></div>-->
</div>
</li>
<li>
<div class="skill">Git</div>
<div class="percent">
<!--<div style="width: 40%;"></div>-->
</div>
</li>
</ul>
</div>

<div class="about code" id="code">
<h2 class="title">Code</h2>
<code>print('Oh, Hi Mark!')</code>
</div>

<div class="about projects" id="projects">
<h2 class="title">Projects</h2>
<ul>
<li><a href="https://github.com/kicheev/dominoes/blob/master/main.py">Dominoes</a></li>
</ul>
</div>

<div class="about education" id="education">
<h2 class="title">Education</h2>
<p>ITMO University</p>
</div>

<div class="about language" id="language">
<h2 class="title">Language</h2>
<p>B1 - Pre-Intermediate</p>
</div>
</main>

<footer>
<div class="year">2024 <a href="https://github.com/kicheev">kicheev</a></div>
<div class="course-logo">
<a href="https://rs.school/courses/javascript-ru" class="rss-course">
<img src="rsschool-logo.svg" alt="rss course link" width="100">
</a>
</div>
</footer>
</div>
</body>
</html>
244 changes: 0 additions & 244 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,245 +1 @@
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}

body {
background: lightblue;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;

}

.container
{
position: relative;
width: 100%;
max-width: 1000px;
min-height: 1000px;
background: #fff;
margin: 50px;
display: grid;
grid-template-areas:
"nav nav"
"left right"
"left foot";
grid-template-rows: 50px 1fr 60px;
grid-template-columns: 1fr 1.5fr;
box-shadow: 0 35px 55px rgba(0,0,0,0.5);
}

.container nav {
grid-area: nav;
background-color: #ffffff;
}

nav ul {
display: flex;
justify-content: space-between;
list-style: none;
margin: 0;
padding-left: 0;
display: flex;
}

nav ul li {
padding-top: 10px;
padding-left: 10px;
padding-right: 10px;
}

nav a {
text-decoration: none;
display: block;
font-size: 1.4em;
font-weight: 300;
}

nav a:visited {
color: #003147;
}

nav a:active {
color: #003147;
}

.container footer {
grid-area: foot;
display: flex;
justify-content: space-between;
padding-left: 40px;
padding-right: 40px;
}

footer .year {
padding-top: 10px;
}


footer a:visited {
color: #003147;
}

footer a:active {
color: #003147;
}

.container .left-side{
grid-area: left;
position: relative;
background: #003147;
padding: 40px;
}

.profile-text {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
padding-bottom: 20px;
border-bottom: 1px solid rgba(255,255,255,0.2);
}

.profile-text .img-box {
position: relative;
width: 200px;
height: 200px;
border-radius: 50%;
overflow: hidden;
}

.profile-text .img-box img {
position: absolute;
top: -25px;
left: -45px;
width: 150%;
height: 150%;
object-fit: cover;
}

.profile-text h1{
color: #fff;
font-size: 1.5em;
margin-top: 20px;
text-transform: uppercase;
text-align: center;
font-weight: 600;
line-height: 1.8em;
}

.profile-text h1 span {
font-size: 0.8em;
font-weight: 300;
}

.contacts {
padding-top: 20px;
}

.title {
color: #fff;
text-transform: uppercase;
font-weight: 600;
letter-spacing: 1px;
margin-bottom: 20px;
}

.contacts ul li {
position: relative;
list-style: none;
margin: 10px 0;
cursor: pointer;
}

.contacts ul li .icon {
display: inline-block;
width: 25px;
font-size: 18px;
color: #03a9f4;
}

.contacts ul li span {
color: #fff;
font-weight: 300;
}

.contacts a:visited {
color: #fff;
}

.contacts a:active {
color: #fff;
}

.contacts a[href^="mailto:"] {
color: #fff;
}

.container .right-side {
grid-area: right;
position: relative;
background: #fff;
padding: 40px;
}

.about {
margin-bottom: 50px;
}

.about:last-child {
margin-bottom: 0;
}

.about p {
margin-bottom: 50px;
}

.right-side .title {
color: #003147;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 10px;
}

p {
color: #333;
}

.about ul li{
position: relative;
width: 100%;
display: grid;
grid-template-columns: 120px 1fr;
justify-content: center;
align-items: center;
}

.skills .percent {
position: relative;
width: 100%;
height: 10px;
background: #f0f0f0;
}

.skills .percent div{
position: absolute;
top: 0;
left: 0;
height: 100%;
background: #03a9f4;

}

.projects a:visited {
color: #003147;
}

.projects a:active {
color: #003147;
}

0 comments on commit 1fbdd1a

Please sign in to comment.