198 lines
5 KiB
HTML
198 lines
5 KiB
HTML
|
<!-- Made with ♥ by Xargana -->
|
|||
|
<!DOCTYPE html>
|
|||
|
<html lang="tr-TR">
|
|||
|
<head>
|
|||
|
<title>2boyut Dijital Tasarım</title>
|
|||
|
<meta name="title" content="2boyut.com.tr" />
|
|||
|
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
|
|||
|
<meta name="description" content="2boyut Dijital Tasarım" />
|
|||
|
<meta name="theme-color" content="#ffffff" />
|
|||
|
<meta source="https://git.xargana.tr/Xargana/2boyut" />
|
|||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|||
|
<meta charset="utf-8" />
|
|||
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|||
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|||
|
<link href="https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet" />
|
|||
|
<style>
|
|||
|
* {
|
|||
|
margin: 0;
|
|||
|
padding: 0;
|
|||
|
box-sizing: border-box;
|
|||
|
}
|
|||
|
html, body {
|
|||
|
margin: 0;
|
|||
|
padding: 0;
|
|||
|
width: 100%;
|
|||
|
height: 100%;
|
|||
|
background-image: url("/assets/fabric_of_squares_gray.jpg");
|
|||
|
}
|
|||
|
:root {
|
|||
|
--bg-color: #fff;
|
|||
|
--text-color: #fff;
|
|||
|
--accent-color: rgba(31, 59, 94, 0.884);
|
|||
|
--accent-hover: rgb(14, 33, 58);
|
|||
|
--card-bg: #1a1a1a;
|
|||
|
--card-border: #2a2a2a;
|
|||
|
}
|
|||
|
</style>
|
|||
|
</head>
|
|||
|
<body>
|
|||
|
<header>
|
|||
|
<style>
|
|||
|
header {
|
|||
|
background-image: url("/assets/fabric_of_squares_gray.jpg");
|
|||
|
display: flex;
|
|||
|
position: relative;
|
|||
|
z-index: 10;
|
|||
|
justify-content: space-between;
|
|||
|
align-items: center;
|
|||
|
padding: 0.7rem 2rem;
|
|||
|
border-bottom: 1px solid #333;
|
|||
|
box-shadow: 0 0 12px rgba(0, 0, 0, 0.60);
|
|||
|
}
|
|||
|
.logo {
|
|||
|
font-size: 2rem;
|
|||
|
font-weight: 900;
|
|||
|
}
|
|||
|
nav {
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
}
|
|||
|
nav ul {
|
|||
|
display: flex;
|
|||
|
list-style: none;
|
|||
|
gap: 1.5rem;
|
|||
|
align-items: center;
|
|||
|
}
|
|||
|
a {
|
|||
|
color: var(--accent-color);
|
|||
|
text-decoration: none;
|
|||
|
transition: color 0.3s ease;
|
|||
|
font-family: "Roboto";
|
|||
|
font-weight: 600;
|
|||
|
font-size: larger;
|
|||
|
}
|
|||
|
a:hover {
|
|||
|
color: var(--accent-hover);
|
|||
|
text-decoration: underline;
|
|||
|
}
|
|||
|
|
|||
|
.language-dropdown {
|
|||
|
position: relative;
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
}
|
|||
|
|
|||
|
.language-button {
|
|||
|
background: none;
|
|||
|
border: none;
|
|||
|
color: var(--accent-color);
|
|||
|
font-family: "Roboto";
|
|||
|
font-weight: 600;
|
|||
|
font-size: larger;
|
|||
|
cursor: pointer;
|
|||
|
padding: 0.5rem;
|
|||
|
border-radius: 5px;
|
|||
|
transition: all 0.3s ease;
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
gap: 0.5rem;
|
|||
|
}
|
|||
|
|
|||
|
.language-button:hover {
|
|||
|
color: var(--accent-hover);
|
|||
|
background-color: rgba(255, 255, 255, 0.1);
|
|||
|
}
|
|||
|
|
|||
|
.dropdown-content {
|
|||
|
display: none;
|
|||
|
position: absolute;
|
|||
|
top: 100%;
|
|||
|
right: 0;
|
|||
|
background-color: white;
|
|||
|
min-width: 160px;
|
|||
|
box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
|
|||
|
border-radius: 8px;
|
|||
|
z-index: 1000;
|
|||
|
margin-top: 0;
|
|||
|
}
|
|||
|
|
|||
|
.dropdown-content a {
|
|||
|
color: #333;
|
|||
|
padding: 12px 16px;
|
|||
|
text-decoration: none;
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
gap: 0.5rem;
|
|||
|
font-size: 1rem;
|
|||
|
transition: background-color 0.3s ease;
|
|||
|
}
|
|||
|
|
|||
|
.dropdown-content a:hover {
|
|||
|
background-color: #f1f1f1;
|
|||
|
color: var(--accent-color);
|
|||
|
text-decoration: none;
|
|||
|
}
|
|||
|
|
|||
|
.language-dropdown:hover .dropdown-content {
|
|||
|
display: block;
|
|||
|
}
|
|||
|
|
|||
|
.dropdown-arrow {
|
|||
|
font-size: 0.8rem;
|
|||
|
transition: transform 0.3s ease;
|
|||
|
}
|
|||
|
|
|||
|
.language-dropdown:hover .dropdown-arrow {
|
|||
|
transform: rotate(180deg);
|
|||
|
}
|
|||
|
</style>
|
|||
|
<div class="logo">
|
|||
|
<a href="/index.html">
|
|||
|
<img src="assets/2boyutlogo_w250.png" alt="2boyut" style="max-width: 80%;" />
|
|||
|
</a>
|
|||
|
</div>
|
|||
|
<nav>
|
|||
|
<ul>
|
|||
|
<li><a href="/">Hizmetlerimiz</a></li>
|
|||
|
<li><a href="/">Referanslar</a></li>
|
|||
|
<li><a href="/about/">Hakkımızda</a></li>
|
|||
|
<li><a href="/">İletişim</a></li>
|
|||
|
<li class="language-dropdown">
|
|||
|
<button class="language-button">
|
|||
|
🌐
|
|||
|
<span class="dropdown-arrow">▼</span>
|
|||
|
</button>
|
|||
|
<div class="dropdown-content">
|
|||
|
<a href="/">Türkçe</a>
|
|||
|
<a href="/en-us/">English</a>
|
|||
|
</div>
|
|||
|
</li>
|
|||
|
</ul>
|
|||
|
</nav>
|
|||
|
</header>
|
|||
|
|
|||
|
<img src="/assets/2boyut_blueprint.jpg" alt="2boyut" style="width: 100%; display: block;" />
|
|||
|
|
|||
|
<footer>
|
|||
|
<style>
|
|||
|
footer {
|
|||
|
align-content: center;
|
|||
|
font-family: "Roboto";
|
|||
|
text-align: center;
|
|||
|
color: #555555;
|
|||
|
}
|
|||
|
.footer-bottom {
|
|||
|
font-style: italic;
|
|||
|
}
|
|||
|
</style>
|
|||
|
<p>2boyut.com.tr - Tüm hakları saklıdır</p>
|
|||
|
<div class="footer-bottom">
|
|||
|
<p>2boyut - 2025©</p>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</footer>
|
|||
|
</body>
|
|||
|
</html>
|