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

About polices #11

Merged
merged 1 commit into from
Jun 24, 2023
Merged
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
1 change: 1 addition & 0 deletions src/Styles/about/About.styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ section.about-container {
z-index: -1;
position: relative;
overflow: hidden;

}
50 changes: 50 additions & 0 deletions src/Styles/about/AboutMe.styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@
flex-direction: row;
justify-content: center;
align-items: center;
position: relative;
overflow: hidden;


p {
z-index: 1;
padding: 20px;
line-height: 1.25em;
text-align: justify;
Expand All @@ -22,6 +26,7 @@
font-family: $fontABout;
}


div {


Expand All @@ -37,6 +42,7 @@
}
}

z-index: 1;
flex: 1;
height: 400px;
margin: 10px;
Expand All @@ -47,4 +53,48 @@
clip-path: polygon(0% 9%, 90% 7%, 89% 89%, 7% 90%);
animation: clipRotation 10s infinite linear alternate;
}

.border {
&::before {
@keyframes rotate3 {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}

@keyframes ballblinking {
0% {
background-color: rgba(201, 26, 26, 0.623);
}
100% {
background-color: rgb(21, 21, 206);
}
}

content: '';
width: 200%;
height: 200px;
background-color: rgba(228, 243, 11, 0.719);
filter: blur(100px);
position: absolute;
left: -50%;
top: calc(50% - 50px);
transition: 1s;
transform: rotate(0deg);
animation: rotate3 10s infinite linear, ballblinking 1s infinite linear alternate;
}

&::after {
content: '';
width: 98%;
height: 98%;
background-color: rgb(0, 0, 0);
left: 1%;
top: 1%;
position: absolute;
}
}
}
77 changes: 77 additions & 0 deletions src/Styles/about/Decorations.styles.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,83 @@
@import '../navbar/Variables/Variables.styles.scss';
@import 'Variables/Variables.styles.scss';

.ballblinking {
position: absolute;
border-radius: 100%;
top: 50%;
left: -300px;
filter: blur(60px);
width: 100px;
height: 100px;
background-color: rgb(207, 18, 18);

@keyframes ballblinking {
0% {
background-color: rgb(245, 8, 8);
}
100% {
background-color: blue;
}
}

@keyframes movement {
0% {
left: -300px;
top: 50%;
width: 150px;
height: 150px;
}
100% {
left: 50%;
top: calc(105%);
width: 50px;
height: 50px;
}
}

animation: ballblinking .2s infinite linear alternate, movement 10s infinite linear;
}

.police1 {
animation-delay: 1s;
animation: ballblinking .1.3s infinite linear alternate, movement 9s infinite linear;
}

.police2 {
animation-delay: 3s;
animation: ballblinking .1s infinite linear alternate, movement 9.4s infinite linear;
}

.police3 {
animation-delay: 5s;
animation: ballblinking .1.5s infinite linear alternate, movement 9.3s infinite linear;
}

.police4 {
@keyframes movement6 {
0% {
left: 50%;
top: 120%;
width: 150px;
height: 150px;
}
90% {
width: 100px;
height: 100px;

}
100% {
left: 100%;
top: 50%;
}
}
animation: ballblinking .1s infinite linear alternate, movement6 7s infinite linear;
}

.police5 {
animation-delay: 2s;
}

.section-name {
color: rgba(211, 226, 9, 0.904);
font-size: 3em;
Expand Down
6 changes: 4 additions & 2 deletions src/components/about/AboutMe.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ import '../../Styles/about/AboutMe.styles.scss';
export const AboutMe = () => {
return (
<div className='aboutme-container'>
<p>I'm a 19 years old programmer studying Computer Science at University of Minho. I've just finished the 1st year of the course. My first contact with programming was when I was 17 years old, while I was at high school (studying economics), I studied by my own web develpment and after that I fell in love with this world. Furthermore, I'm a front-end developer passionate for Cyber Security, an area that I will focus in the future. Nowadays, I'm specialized in developing and designing any kind of website you want with React. If you'd like to check my projects, you can visit my GitHub profile. Also, I'm a Water Polo goalkeeper :) </p>
<div></div>
<p className='about-text'>I'm a 19 years old programmer studying Computer Science at University of Minho. I've just finished the 1st year of the course. My first contact with programming was when I was 17 years old, while I was at high school (studying economics), I studied by my own web develpment and after that I fell in love with this world. Furthermore, I'm a front-end developer passionate for Cyber Security, an area that I will focus in the future. Nowadays, I'm specialized in developing and designing any kind of website you want with React. If you'd like to check my projects, you can visit my GitHub profile. Also, I'm a Water Polo goalkeeper :) </p>
<div className='img'></div>
<span className='border'></span>
<span className='border'></span>
</div>
)
}
5 changes: 5 additions & 0 deletions src/components/about/Decorations.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ import '../../Styles/about/Decorations.styles.scss';
export const Decorations = () => {
return (
<>
<div className='ballblinking police1'></div>
<div className='ballblinking police2'></div>
<div className='ballblinking police3'></div>
<div className='ballblinking police4'></div>
<div className='ballblinking police5 police4'></div>
<span className='section-name'>ABOUT</span>
<div className='stand sright'></div>
<div className='stand'></div>
Expand Down