Skip to content

Commit

Permalink
first presentable version
Browse files Browse the repository at this point in the history
  • Loading branch information
Dragos Feleaga committed Aug 24, 2020
1 parent b8ef888 commit f0a5bca
Show file tree
Hide file tree
Showing 23 changed files with 572 additions and 256 deletions.
Binary file added .DS_Store
Binary file not shown.
Binary file added public/.DS_Store
Binary file not shown.
Binary file added public/CV_Dragos-George_Feleaga.pdf
Binary file not shown.
5 changes: 3 additions & 2 deletions public/css/header.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ header {
width: 100%;
height: 75px;
display: flex;
color: white;
letter-spacing: 2px;
border-top: 4px solid #ff9e80;
border-top: 4px solid var(--main-color);
background: rgba(0,0,0,.0);
z-index: 999;
}
Expand Down Expand Up @@ -54,7 +55,7 @@ nav {
display: block;
width: 0;
height: 2px;
background: #ff9e80;
background: var(--main-color);
transition: width 0.25s;
}

Expand Down
5 changes: 3 additions & 2 deletions public/css/intro.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@
}

#title {
display: none;
text-align: center;
margin-top: -5vh;
color: white;
}

#name, #career {
Expand All @@ -32,12 +34,11 @@

#name {
font-size: 48px;
animation-delay: 0.3s;
}

#career {
font-size: 32px;
animation-delay: 1s;
animation-delay: 0.7s;
}

@media only screen and (max-width: 528px) {
Expand Down
38 changes: 9 additions & 29 deletions public/css/projects.css
Original file line number Diff line number Diff line change
@@ -1,31 +1,10 @@
#projects {
margin-top: 100vh;
min-height: calc(100vh - 75px);
background: white;
color: black;
text-align: center;
}

#showcase {
display: flex;
justify-content: space-between;
margin: 1vh auto;
width: 95%;
max-width: 1040px;
flex-wrap: wrap;
}

.project-card {
width: 300px;
font-family: 'Lato', sans-serif;
margin: 4vh 10px 10px 0;
margin: 0 10px 50px 0;
text-align: left;
}

.project-card:last-child {
align-self: flex-start;
}

.project-title {
position: relative;
font-size: 24px;
Expand Down Expand Up @@ -68,6 +47,7 @@

.project-card img {
width: 100%;
height: 204px;
object-fit: cover;
transition: all .3s;
}
Expand All @@ -83,20 +63,20 @@
.project-card p {
font-size: 18px;
white-space: wrap;
color: #444;
color: #555;
margin-bottom: 8px;
}

.project-card .tech-item {
font-size: 15px;
font-weight: 600;
color: #FF9E80;
border-bottom: 2px solid #FF9E80;
color: var(--main-color);
border-bottom: 2px solid var(--main-color);
margin-right: 8px;
}

@media only screen and (max-width: 725px) {
#showcase {
justify-content: center;
@media only screen and (max-width: 1005px) {
#projects .container {
justify-content: space-around;
}
}
}
82 changes: 82 additions & 0 deletions public/css/skills.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
#skills {
background: #151515;
color: white;
}

#skills .container {
text-align: left;
}

.skill {

}

.skill-title {
display: flex;
}

.skill-title img {
margin-right: 20px;
}

.skill-name {
font-size: 18px;
}

.skill-content {
list-style-type: none;
margin-top: 15px;
margin-left: 1em;
font-family: 'Lato', sans-serif;
font-size: 15px;
}

.skill-content li {
line-height: 2;
}

.skill-content li::before {
content: "\2022";
color: var(--main-color);
font-weight: bold;
display: inline-block;
width: 1em;
margin-left: -1em;
}

.skill-content li a {
transition: color .2s;
}

.skill-content li a img {
vertical-align: baseline;
margin-left: 2px;
}

.skill-content li a:hover {
color: var(--main-color);
}

@media only screen and (max-width: 976px) {
#skills {
text-align: left;
padding-left: 5vw;
}
#skills .container {
flex-direction: column;
}
#skills .container > img {
display: none;
}
#skills .skill {
margin-bottom: 20px;
align-items: stretch;
border-left: none;
}
.skill .skill-content {
margin-left: 3vw;
}
.skill-title br {
display: none;
}
}
114 changes: 105 additions & 9 deletions public/css/style.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
:root {
--main-color: #ffa880;
}

@font-face {
font-family: 'Baron';
src: url('/fonts/BaronNeue-Regular.woff');
Expand All @@ -18,28 +22,41 @@ body {
min-height: 100%;
font-family: 'Baron', sans-serif;
line-height: 1.3;
color: #fff;
}

section {
padding-top: 3vh;
padding-left: 3vw;
padding-right: 3vw;
}

a {
color: inherit;
text-decoration: none;
}

section {
padding: 7vh 3vh;
text-align: center;
}

.section-title {
display: inline-block;
margin: 0 auto;
margin-bottom: 7vh;
font-size: 36px;
text-align: center;
border-bottom: 5px solid #FF9E80;
border-bottom: 5px solid #ffa880;
padding-bottom: 9px;
}

.container {
display: flex;
justify-content: space-between;
margin: 0 auto;
max-width: 1040px;
flex-wrap: wrap;
}

#content {
margin-top: 100vh;
background: white;
}

.fadeIn {
opacity: 1 !important;
animation: fadeIn .2s;
Expand All @@ -50,6 +67,22 @@ a {
animation: fadeOut .2s;
}

#preloader {
display: flex;
justify-content: center;
align-items: center;
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: 100%;
background: #171313;
z-index: 1001;
overflow: hidden;
border-top: 4px solid var(--main-color);
transition: opacity .5s;
}

@keyframes fadeIn {
from {
opacity: 0;
Expand All @@ -66,4 +99,67 @@ a {
to {
opacity: 0;
}
}
}

/**
* ==============================================
* Loading Spinner
* ==============================================
*/
.dot-windmill {
position: relative;
top: -10px;
width: 10px;
height: 10px;
border-radius: 1px;
background-color: #ffa880;
color: #ffa880;
transform-origin: 5px 15px;
-webkit-animation: dot-windmill 2s infinite linear;
animation: dot-windmill 2s infinite linear;
}

.dot-windmill::before, .dot-windmill::after {
content: '';
display: inline-block;
position: absolute;
}

.dot-windmill::before {
left: -8.66px;
top: 15px;
width: 10px;
height: 10px;
border-radius: 1px;
background-color: #ffa880;
color: #ffa880;
}

.dot-windmill::after {
left: 8.66px;
top: 15px;
width: 10px;
height: 10px;
border-radius: 1px;
background-color: #ffa880;
color: #ffa880;
}

@-webkit-keyframes dot-windmill {
0% {
transform: rotateZ(0deg) translate3d(0, 0, 0);
}
100% {
transform: rotateZ(720deg) translate3d(0, 0, 0);
}
}

@keyframes dot-windmill {
0% {
transform: rotateZ(0deg) translate3d(0, 0, 0);
}
100% {
transform: rotateZ(720deg) translate3d(0, 0, 0);
}
}

Binary file added public/img/.DS_Store
Binary file not shown.
Binary file added public/img/airbook.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/img/graph.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/img/line.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/img/link.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions public/img/mobile-dev.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/img/phase.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions public/img/puzzle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/img/smarthouse.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/img/tictacgo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/img/trutabgen-app.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions public/img/web-dev.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit f0a5bca

Please sign in to comment.