-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
DCI Student
committed
Sep 16, 2024
0 parents
commit e0fe735
Showing
432 changed files
with
50,205 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# personal |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* About Me Section */ | ||
.about-me { | ||
padding: 50px 20px; | ||
background-color: var(--secondary-color); /* Ana renk ile uyumlu arka plan */ | ||
text-align: center; | ||
} | ||
|
||
.about-me .section-title { | ||
font-size: 2.5em; | ||
color: var(--text-color); | ||
margin-bottom: 30px; | ||
} | ||
|
||
.about-content { | ||
max-width: 800px; | ||
margin: 0 auto; | ||
color: var(--text-color); | ||
font-size: 1.2em; | ||
line-height: 1.8; | ||
font-family: var(--font-family2); /* Alternatif yazı tipi */ | ||
} | ||
|
||
.about-content p { | ||
font-size: var(--p-font-size); | ||
color: var(--text-color); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* Contact Section */ | ||
.contact { | ||
padding: 50px 20px; | ||
background-color: var(--secondary-color); /* Ana renk */ | ||
text-align: center; | ||
} | ||
|
||
.contact .section-title { | ||
font-size: 2.5em; | ||
color: var(--text-color); | ||
margin-bottom: 30px; | ||
} | ||
|
||
.contact-description { | ||
font-size: 1.2em; | ||
color: var(--text-color); | ||
margin-bottom: 30px; | ||
max-width: 800px; | ||
margin: 0 auto; | ||
line-height: 1.8; | ||
font-family: var(--font-family2); | ||
} | ||
|
||
/* Contact Button */ | ||
.quote-btn { | ||
background-color: var(--btn-bg-color); | ||
color: var(--btn-text-color); | ||
padding: 15px 30px; | ||
border-radius: 30px; | ||
font-size: 1.2em; | ||
border: none; | ||
cursor: pointer; | ||
transition: background-color 0.3s ease; | ||
} | ||
|
||
.quote-btn:hover { | ||
background-color: var(--highlight-color); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,165 @@ | ||
/* Footer Section */ | ||
.footer { | ||
background-color: var(--secondary-color); | ||
color: var(--text-color); | ||
padding: 40px 20px; | ||
font-family: var(--font-family2); | ||
border-top: 0.5px solid rgba(255, 255, 255, 0.1); | ||
} | ||
|
||
.logo-container { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
padding: 10px; | ||
background-color: var(--secondary-color); | ||
} | ||
|
||
.logo { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
gap:5px; | ||
|
||
} | ||
|
||
.logo img { | ||
width: 100px; | ||
height: auto; | ||
|
||
} | ||
|
||
.logo h2 { | ||
padding-top: 20px; | ||
font-size:var(--h2-font-size); | ||
font-family: var(--font-family); | ||
color: var(--text-color); | ||
} | ||
|
||
/* Footer içerik düzeni */ | ||
.footer-content { | ||
max-width: 1200px; | ||
margin: 0 auto; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: flex-start; | ||
flex-wrap: wrap; | ||
gap: 40px; | ||
} | ||
|
||
.footer-section { | ||
flex: 1; | ||
min-width: 220px; | ||
} | ||
|
||
.footer-section h3 { | ||
font-size: 1.2em; | ||
margin-bottom: 15px; | ||
} | ||
|
||
.footer-section ul { | ||
list-style-type: none; | ||
padding: 0; | ||
} | ||
|
||
.footer-section ul li { | ||
margin-bottom: 10px; | ||
} | ||
|
||
.footer-section ul li a { | ||
color: var(--text-color); | ||
text-decoration: none; | ||
} | ||
|
||
.footer-section ul li a:hover { | ||
color: var(--highlight-color); | ||
} | ||
|
||
/* Sosyal medya ikonları */ | ||
.social-media { | ||
display: flex; | ||
justify-content: center; | ||
margin-top: 30px; | ||
} | ||
|
||
.social-media a { | ||
color: var(--text-color); | ||
margin: 0 10px; | ||
font-size: 1.5em; | ||
} | ||
|
||
.social-media a:hover { | ||
color: var(--highlight-color); | ||
} | ||
|
||
/* Footer alt kısmı */ | ||
.footer-bottom { | ||
border-top: 1px solid rgba(255, 255, 255, 0.1); | ||
padding-top: 20px; | ||
text-align: center; | ||
margin-top: 40px; | ||
} | ||
|
||
.copyright { | ||
font-size: 0.9em; | ||
} | ||
|
||
/* Scroll to Top Button */ | ||
.scroll-to-top { | ||
position: fixed; | ||
bottom: 20px; | ||
right: 20px; | ||
background-color: var(--text-color); | ||
color: var(--btn-text-color); | ||
width: 50px; | ||
height: 50px; | ||
border-radius: 50%; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
text-decoration: none; | ||
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); | ||
transition: background-color 0.3s ease, transform 0.3s ease; | ||
z-index: 1000; | ||
} | ||
|
||
.scroll-to-top:hover { | ||
background-color: var(--btn-bg-color); /* Hover ile rengi değiştir */ | ||
transform: scale(1.1); /* Hover animasyonu */ | ||
} | ||
|
||
.scroll-to-top i { | ||
font-size: 20px; | ||
} | ||
|
||
.scroll-to-top.hide { | ||
display: none; /* Buton varsayılan olarak gizli */ | ||
} | ||
|
||
|
||
/* Responsive*/ | ||
@media (max-width: 768px) { | ||
|
||
.logo h2 { | ||
font-size:24px; | ||
} | ||
|
||
.footer-content { | ||
flex-direction: column; | ||
align-items: center; | ||
} | ||
|
||
.footer-section { | ||
margin-bottom: 30px; | ||
text-align: center; | ||
} | ||
|
||
.footer-description { | ||
max-width: none; | ||
} | ||
|
||
.scroll-to-top { | ||
display: none; /* Buton varsayılan olarak gizli */ | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* Global Styles */ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
body { | ||
font-family: var(--font-family); | ||
background-color: var(--secondary-color); | ||
color: var(--text-color); | ||
font-size: var(--base-font-size); | ||
line-height: 1.6; | ||
} | ||
|
||
h1, h2 { | ||
color: var(--highlight-color); | ||
} | ||
|
||
p { | ||
font-family: var(--font-family2); | ||
font-size: var(--p-font-size); | ||
color: var(--text-color); | ||
} | ||
|
||
/* Butonlar */ | ||
button, .btn, .explore-btn { | ||
background-color: var(--btn-bg-color); | ||
color: var(--btn-text-color); | ||
padding: var(--btn-padding); | ||
border-radius: var(--btn-radius); | ||
text-decoration: none; | ||
font-size: 1.2em; | ||
display: inline-block; | ||
cursor: pointer; | ||
|
||
/* Animasyon geçişi */ | ||
transition: background-color 0.4s ease, transform 0.3s ease; | ||
} | ||
|
||
button:hover, .btn:hover, .explore-btn:hover { | ||
background-color:var(--text-color); /* Renk değişimi */ | ||
box-shadow: 2px 2px 10px rgba(252, 247, 247, 0.8); /* Buton gölgelendirme */ | ||
transform: scale(1.05); /* Buton hafif büyür */ | ||
} | ||
|
||
/* Flex düzen ve merkezi hizalamalar */ | ||
.flex-center { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} |
Oops, something went wrong.