initial commit
This commit is contained in:
Executable
+291
@@ -0,0 +1,291 @@
|
||||
<section class="skillsIntro">
|
||||
<div class="textContainer slide-top">
|
||||
<h1 data-lang="skillsIntroHeader" class="merriweather"></h1>
|
||||
<p data-lang="skillsIntroTextOne" class="anonymous-pro-regular"></p>
|
||||
<p data-lang="skillsIntroTextTwo" class="anonymous-pro-regular"></p>
|
||||
<p data-lang="skillsIntroTextThree" class="anonymous-pro-regular"></p>
|
||||
</div>
|
||||
<img src="images/selfPicLookLeft.webp" alt="" class="bounce">
|
||||
</section>
|
||||
<div class="skillDevider"></div>
|
||||
<section class="skillsTree slide-right">
|
||||
<div class="imgContainer">
|
||||
</div>
|
||||
</section>
|
||||
<div class="skillDevider"></div>
|
||||
<section class="skillsProcess">
|
||||
<h1 data-lang="skillsProcessHeader" class="merriweather"></h1>
|
||||
<div class="processMenuContainer" id="processMenuContainer">
|
||||
<button data-lang="allProcessesButton" class="resetButton anonymous-pro-regular" id="resetButton">Alle</button>
|
||||
</div>
|
||||
<div class="processCardContainer" id="processCardContainer"></div>
|
||||
</section>
|
||||
<style>
|
||||
.skillsIntro {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
border-radius: 25px;
|
||||
color: var(--primary-text-color);
|
||||
width: 90%;
|
||||
margin: 0 auto;
|
||||
gap: 50px;
|
||||
}
|
||||
.skillsIntro .textContainer {
|
||||
position: relative;
|
||||
flex: 1;
|
||||
max-width: 70%;
|
||||
background: var(--card-bg);
|
||||
padding: 25px;
|
||||
margin-right: 5%;
|
||||
border-radius: 12px;
|
||||
box-shadow:
|
||||
inset 0 2px 4px rgba(255, 255, 255, 0.05),
|
||||
inset 0 -3px 6px rgba(0, 0, 0, 0.1),
|
||||
0 4px 12px rgba(0, 0, 0, 0.15);
|
||||
text-align: justify;
|
||||
}
|
||||
.skillsIntro .textContainer h1, .skillsProcess h1 {
|
||||
margin: 0 0 10px;
|
||||
font-size: 2.3em;
|
||||
font-weight: 500;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
color: var(--tertiary-color);
|
||||
text-shadow: 1px 2px 3px var(--shadow-color), 2px 2px 5px var(--shadow-color), 1px 1px 3px var(--card-header-text);
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.skillsIntro .textContainer p {
|
||||
font-size: 1.3em;
|
||||
line-height: 1.6;
|
||||
}
|
||||
.skillsIntro img {
|
||||
position: relative;
|
||||
max-width: 30%;
|
||||
padding: 12px;
|
||||
}
|
||||
.skillsTree {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
align-items: center;
|
||||
padding: 0px;
|
||||
border-radius: 25px;
|
||||
color: var(--primary-text-color);
|
||||
width: 90%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.skillsTree .imgContainer {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
flex-direction: row;
|
||||
justify-content: space-evenly;
|
||||
align-items: center;
|
||||
gap: 50px;
|
||||
}
|
||||
.skillsTree img {
|
||||
width: 90px;
|
||||
padding: 5px;
|
||||
transition: all 0.3s;
|
||||
justify-content: space-evenly;
|
||||
cursor: pointer;
|
||||
border-radius: 15px;
|
||||
}
|
||||
.skillsTree img:hover {
|
||||
scale: 1.2;
|
||||
}
|
||||
.skillsProcess {
|
||||
position: relative;
|
||||
width: 90%;
|
||||
padding: 25px;
|
||||
left: 50%;
|
||||
transform: translate(-50%);
|
||||
border-radius: 25px;
|
||||
text-align: left;
|
||||
border-radius: 12px;
|
||||
box-shadow:
|
||||
inset 0 2px 4px rgba(255, 255, 255, 0.05),
|
||||
inset 0 -3px 6px rgba(0, 0, 0, 0.1),
|
||||
0 4px 12px rgba(0, 0, 0, 0.15);
|
||||
color: var(--primary-text-color);
|
||||
}
|
||||
.processMenuContainer {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: left;
|
||||
gap: 10px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.processMenuContainer button {
|
||||
background-color: var(--link-color);
|
||||
color: white;
|
||||
border-radius: 8px;
|
||||
box-shadow:
|
||||
inset 0 2px 4px rgba(255, 255, 255, 0.05),
|
||||
inset 0 -3px 6px rgba(0, 0, 0, 0.1),
|
||||
0 4px 12px rgba(0, 0, 0, 0.15);
|
||||
flex-grow: 1;
|
||||
font-size: 1.2em;
|
||||
padding: 10px 15px;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
#resetButton {
|
||||
background: var(--alert-color);
|
||||
color: var(--primary-text-color);
|
||||
margin-right: 15px;
|
||||
}
|
||||
#resetButton:hover {
|
||||
background: var(--link-hover-color);
|
||||
transform: translateY(-5px) scale(1.02);
|
||||
}
|
||||
.processMenuContainer button:hover {
|
||||
background-color: var(--link-hover-color);
|
||||
color: var(--primary-text-color);
|
||||
transform: translateY(-5px) scale(1.02);
|
||||
}
|
||||
.processMenuContainer button.active {
|
||||
background-color: var(--success-color);
|
||||
color: var(--primary-text-color);
|
||||
transform: translateY(-5px) scale(1.02);
|
||||
}
|
||||
.processCardContainer {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
gap: 15px;
|
||||
}
|
||||
.processCard {
|
||||
position: relative;
|
||||
display: flex;
|
||||
background-color: var(--card-bg);
|
||||
color: var(--primary-text-color);
|
||||
padding: 15px;
|
||||
flex-grow: 1;
|
||||
flex-basis: calc(100% / 6 - 20px);
|
||||
min-width: 25%;
|
||||
max-width: calc(100%);
|
||||
height: 75px;
|
||||
border-radius: 12px;
|
||||
box-shadow:
|
||||
inset 0 2px 4px rgba(255, 255, 255, 0.05),
|
||||
inset 0 -3px 6px rgba(0, 0, 0, 0.1),
|
||||
0 4px 12px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
.processCard img {
|
||||
position: absolute;
|
||||
left: 15px;
|
||||
top: 50%;
|
||||
transform: translate(0,-50%);
|
||||
width: 75px;
|
||||
height: 75px;
|
||||
object-fit: contain;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.processCard h2 {
|
||||
position: absolute;
|
||||
left: 110px;
|
||||
top: 5px;
|
||||
font-size: 1.2em;
|
||||
color: var(--primary-text-color);
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.processCard span {
|
||||
position: absolute;
|
||||
right: 25px;
|
||||
bottom: 30px;
|
||||
color: var(--link-color);
|
||||
font-size: 1.1em;
|
||||
}
|
||||
.processCard:hover img {
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
}
|
||||
.mainBar {
|
||||
position: relative;
|
||||
top: 60px;
|
||||
left: 100px;
|
||||
background-color: var(--input-bg);
|
||||
width: calc(100% - 110px);
|
||||
height: 10px;
|
||||
border-radius: 5px;
|
||||
overflow: hidden;
|
||||
box-shadow: 1px 1px 2px var(--shadow-color), 2px 2px 2px var(--shadow-color), 2px 2px 5px var(--shadow-color) inset;
|
||||
}
|
||||
.mainBar div {
|
||||
background-color: var(--success-header);
|
||||
height: 100%;
|
||||
width: 0%;
|
||||
transition: width 0.5s ease-in-out;
|
||||
border-radius: 25px;
|
||||
}
|
||||
.skillDevider {
|
||||
position: relative;
|
||||
left: 50%;
|
||||
transform: translate(-50%);
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
background: var(--border-color);
|
||||
margin: 25px 0;
|
||||
}
|
||||
@media (max-width: 1150px) {
|
||||
.skillsIntro {
|
||||
flex-direction: column-reverse;
|
||||
text-align: center;
|
||||
gap: 0;
|
||||
width: calc(100% + 75px);
|
||||
margin-top: -50px;
|
||||
left: 50%;
|
||||
transform: translate(-50%);
|
||||
}
|
||||
.skillsIntro .textContainer h1, .skillsProcess h1 {
|
||||
font-size: 1.8em;
|
||||
text-align: center;
|
||||
}
|
||||
.skillsIntro .textContainer p {
|
||||
font-size: 1em;
|
||||
line-height: 1.6;
|
||||
}
|
||||
.skillsIntro .textContainer {
|
||||
max-width: 120%;
|
||||
margin-right: 0;
|
||||
text-align: justify;
|
||||
padding: 15px;
|
||||
border-radius: 15px;
|
||||
}
|
||||
.skillsIntro img {
|
||||
max-width: 90%;
|
||||
max-height: 300px;
|
||||
right: -25%;
|
||||
top: 12px;
|
||||
transform: none;
|
||||
}
|
||||
.skillsTree .imgContainer {
|
||||
width: calc(100% + 100px);
|
||||
gap: 15px;
|
||||
}
|
||||
.skillsProcess {
|
||||
width: calc(100% + 75px);
|
||||
box-shadow: none;
|
||||
padding: 0;
|
||||
}
|
||||
.skillDevider {
|
||||
width: calc(100% + 75px);
|
||||
}
|
||||
.processCard {
|
||||
flex-basis: calc(100% / 3 - 20px);
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
@media (max-width: 786px) {
|
||||
.processCard {
|
||||
flex-basis: calc(100% / 2 - 20px);
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user