72 lines
1.5 KiB
HTML
72 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<link rel="stylesheet" href="/style/style.css" />
|
|
<style>
|
|
p {
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
margin-top: 48px;
|
|
}
|
|
|
|
#logo {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 8px;
|
|
border: 1px solid black;
|
|
padding: 24px 48px;
|
|
gap: 24px;
|
|
}
|
|
|
|
#logo-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.brand-name {
|
|
font-family: "Source Code Pro", monospace;
|
|
font-size: 64px;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.reverse {
|
|
transform: scaleX(-1);
|
|
}
|
|
</style>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Vite + TS</title>
|
|
</head>
|
|
<body>
|
|
<div id="logo-container">
|
|
<div id="logo">
|
|
<div id="brand-reversed" class="brand-name reverse">
|
|
<p>A</p>
|
|
<p>C</p>
|
|
<p>A</p>
|
|
<p>Y</p>
|
|
<p>İ</p>
|
|
<p>P</p>
|
|
</div>
|
|
<img width="624" height="624" src="/acayip-logo.png" />
|
|
<div id="brand" class="brand-name">
|
|
<p>A</p>
|
|
<p>C</p>
|
|
<p>A</p>
|
|
<p>Y</p>
|
|
<p>İ</p>
|
|
<p>P</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|