Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CV. Cross-Check #4

Open
wants to merge 45 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
5e0b8c9
feat: add my photo, name and surname
sashtje Aug 26, 2021
3dcbf93
feat: add contact information
sashtje Aug 26, 2021
01d6bda
feat: add about myself
sashtje Aug 26, 2021
847e9f4
feat: add skills
sashtje Aug 26, 2021
6d1d48e
feat: add code example
sashtje Aug 26, 2021
73646b1
feat: add education and courses
sashtje Aug 26, 2021
4761751
feat: add language
sashtje Aug 26, 2021
5b132e2
init: start HTML, CSS & Git Basics task
sashtje Sep 2, 2021
1806f5e
feat: add basic page layout
sashtje Sep 2, 2021
4810d47
feat: add favicon
sashtje Sep 2, 2021
e904a59
feat: add custom scrollbar, fonts and background
sashtje Sep 2, 2021
7b9c19b
feat: add styles for mobile version
sashtje Sep 2, 2021
1ae74fb
feat: add animation for icons
sashtje Sep 2, 2021
d8cbad9
feat: add animation for personal photo
sashtje Sep 2, 2021
169c61d
feat: add desktop styles
sashtje Sep 2, 2021
255d705
refactor: change structure of the project and refactor the code
sashtje Sep 3, 2021
b17e115
refactor: delete readme.md
sashtje Sep 3, 2021
a84d02e
merge fix conflict
sashtje Sep 3, 2021
80688f0
refactor: delete README.md
sashtje Sep 16, 2021
f299c4b
fix: change title text
sashtje Sep 16, 2021
7597d52
feat: add custom cursor
sashtje Sep 16, 2021
1e31e8e
feat: add burger-menu
sashtje Sep 17, 2021
23f5b22
refactor: split file with styles into its parts
sashtje Sep 17, 2021
c5b9308
feat: add adaptive header
sashtje Sep 17, 2021
6bf6faa
feat: add discord contact
sashtje Sep 17, 2021
8e65613
feat: add sticky header and aside
sashtje Sep 17, 2021
9f4cb9a
feat: add rotation of personal photo
sashtje Sep 17, 2021
887b045
feat: improve about section, add more description about myself
sashtje Sep 17, 2021
d12a31d
feat: add some new skills
sashtje Sep 17, 2021
3d72a20
feat: change code in code section
sashtje Sep 17, 2021
5ec2eb0
feat: add highlight for code
sashtje Sep 18, 2021
504cd3a
feat: add my real name to the about section
sashtje Sep 18, 2021
69e10e1
feat: add structure of projects section
sashtje Sep 18, 2021
de3d0e4
feat: finish projects section and add video to the video section
sashtje Sep 18, 2021
0b3cd20
feat: change Education & courses section
sashtje Sep 18, 2021
4e72325
feat: change languages section
sashtje Sep 18, 2021
7ab0b12
feat: add button scroll to top
sashtje Sep 19, 2021
25be513
feat: change menu to sticky in all cases
sashtje Sep 19, 2021
ea6ea43
feat: add dark mode colors
sashtje Sep 19, 2021
7c01963
feat: add transition for changing theme
sashtje Sep 19, 2021
d7f9a2f
fix: padding for sections to scroll
sashtje Sep 19, 2021
67cb975
feat: add self-assessment
sashtje Sep 19, 2021
64176bd
feat: add my own video to the video section
sashtje Sep 19, 2021
b2e42a8
feat: change transition time for links
sashtje Sep 20, 2021
b0a10e8
fix: delete obsolete frameborder atribute
sashtje Sep 20, 2021
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
5 changes: 0 additions & 5 deletions README.md

This file was deleted.

83 changes: 83 additions & 0 deletions css/aside.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
.aside {
background-color: #ffffff;
transition: 1s;
}

.dark .aside {
background: url("../images/other-images/bg-dark-4766.png");
}

.aside__photo {
margin-top: 10px;
}

.aside__photo-container {
position: relative;
max-width: 200px;
margin: 0 auto;
perspective: 100em;
}

.aside__photo-wrapper {
padding-bottom: 152.5%;
transition: 3s;
transform-style: preserve-3d;
cursor: url("../images/cur/cur-pointer.cur"), pointer;
}

.photo__photo-wrapper_is-rotated {
animation-name: photo-rotate;
animation-duration: 4s;
}

@keyframes photo-rotate {
0% {
transform: rotateY(0deg);
}
20% {
transform: rotateY(180deg);
}
80% {
transform: rotateY(180deg);
}
100% {
transform: rotateY(0deg);
}
}

.aside__personal-photo {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;

display: block;
border-radius: 10px;
}

.aside__sashtje-photo {
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
transition: box-shadow 0.4s ease-in-out;
backface-visibility: hidden;
}

.aside__sashtje-photo:hover {
box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.5);
}

.dark .aside__sashtje-photo {
box-shadow: 5px 5px 10px rgba(255, 255, 255, 0.2);
}

.dark .aside__sashtje-photo:hover {
box-shadow: 5px 5px 30px rgba(255, 255, 255, 0.2);
}

.aside__easter-egg-photo:hover {
box-shadow: none;
}

.aside__section {
margin-top: -45px;
}
40 changes: 40 additions & 0 deletions css/footer.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
.footer {
display: flex;
margin-top: 35px;
padding: 10px 5px 20px 5px;
align-items: center;
justify-content: space-between;

perspective: 100em;
}

.footer__github,
.footer__copyright,
.footer__rsschool {
transition: transform 1s ease-in-out;
}

.footer__github:hover {
transform: rotateY(360deg);
}

.footer__copyright:hover {
transform: rotateY(360deg) scale(2);
}

.footer__rsschool:hover {
transform: rotateY(-360deg);
}

@media (min-width: 670px) {
.footer {
padding: 10px 35px 20px 35px;

background-color: #f3f3f3;
transition: 1s;
}

.dark .footer {
background-color: #474242;
}
}
Loading