-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (59 loc) · 1.38 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<meta lang="tr">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="Dolar Düştü Mü?"/>
<meta name="twitter:description" content="USD/TRY kurunu bir ay öncesi ile karşılaştıran web sayfası."/>
<title>Dolar Düştü Mü?</title>
<style>
@media (prefers-color-scheme: dark) {
body{
background-color: black;
color: gray;
}
}
.center {
margin: 0;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 25vw;
}
.footer {
left: 10%;
bottom: 0;
position: fixed;
text-align: center;
font-size: 3vw;
}
@media (min-aspect-ratio: 1) {
.footer {
font-size: 1.5em;
}
}
</style>
</head>
<body>
<h1 class="center">Hayır</h1>
<footer class="footer">
<p>
Bir ay öncesi ile karşılaştırılınca USD/TRY kuru. <br>
Son güncellenme:
2025-01-24
</p>
</footer>
<!--
<script>
const text = document.querySelector("h1");
function changeText(){
text.textContent = "Hayır";
}
setInterval(changeText, 500);
</script>
-->
</body>
</html>