Skip to content

Commit

Permalink
buttons wird geändert
Browse files Browse the repository at this point in the history
  • Loading branch information
Orhanguezel committed Dec 11, 2024
1 parent 95161cb commit 0e34263
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sync-to-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
key: ${{ secrets.SSH_PRIVATE_KEY }}
port: 22
script: |
cd /root/guezelwebdesign
cd /var/www/guezelwebdesign
git pull origin main
10 changes: 8 additions & 2 deletions css/about-me.css
Original file line number Diff line number Diff line change
Expand Up @@ -255,8 +255,14 @@
background-color: var(--secondary-color);
}
.table-section tr:hover {
background-color: #19d6e3; /* Daha parlak bir mavi ton */
color: #000; /* Siyah yazı rengi */
background: radial-gradient(circle, rgba(64, 64, 64, 0.6), rgba(0, 0, 0, 0.8));
color: var(--highlight-color),!important;
z-index: 1001;
text-align: center;
transform: scale(1.05);
box-shadow: 1px 1px 1px 10px solid var(--highlight-color);
box-shadow: 1px 1px 10px var(--highlight-color);
transition: 1s;
}

/* Sport Section */
Expand Down
19 changes: 13 additions & 6 deletions css/header.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,23 @@
}

.main-nav nav ul li a {
color: white;
color: var(--text-color);
text-decoration: none;
font-size: 1.2rem;
transition: color 0.3s ease;
font-family: var(--font-family);
}

.main-nav nav ul li a:hover {
color: var(--highlight-color);
}
background: radial-gradient(circle, rgba(64, 64, 64, 0.6), rgba(0, 0, 0, 0.8));
z-index: 1001;
border-radius: 50%;
text-align: center;
transform: scale(1.2);
box-shadow: 1px 1px 1px 10px solid var(--highlight-color);
box-shadow: 1px 1px 10px var(--highlight-color);
transition: 1s;
}

/* Hamburger Menü - Küçük Ekranlar için */
.hamburger-menu {
Expand All @@ -77,7 +84,7 @@
.hamburger-menu .bar {
height: 3px;
width: 100%;
background-color: white;
background-color: var(--text-color);
border-radius: 10px;
transition: all 0.3s ease;
}
Expand Down Expand Up @@ -116,7 +123,7 @@
}

.nav-menu li a {
color: white;
color: var(--text-color);
text-decoration: none;
font-size: 1.5em;
transition: color 0.3s ease;
Expand Down Expand Up @@ -166,7 +173,7 @@
}

.nav-menu li a {
color: white;
color: var(--text-color);
text-decoration: none;
font-size: 1.2em;
padding: 10px 20px;
Expand Down
15 changes: 12 additions & 3 deletions css/layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,20 @@ button,
button:hover,
.btn:hover,
.explore-btn:hover {
background-color: var(--text-color);
box-shadow: 2px 2px 10px rgba(252, 247, 247, 0.8);
transform: scale(1.05);
background: radial-gradient(circle, rgba(64, 64, 64, 0.6), rgba(0, 0, 0, 0.8));
color:var(--highlight-color);
z-index: 1001;
border-radius: 50%;
text-align: center;
transform: scale(1.2);
box-shadow: 1px 1px 1px 10px solid var(--highlight-color);
box-shadow: 1px 1px 10px var(--highlight-color);
transition: 1s;
}




/* Responsive Ayarlar */
@media (max-width: 768px) {
h1 {
Expand Down

0 comments on commit 0e34263

Please sign in to comment.