-
Notifications
You must be signed in to change notification settings - Fork 0
/
buttons.php
93 lines (83 loc) · 2.47 KB
/
buttons.php
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Karate Showdown</title>
<link rel="icon" type="image/x-icon" href="/sprites/titles/favicon.ico">
<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=Rubik+Mono+One&display=swap" rel="stylesheet">
<style>
* {
box-sizing: border-box;
font-family: 'Rubik Mono One', sans-serif;
}
body, html {
height: 100%;
margin: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-image: url('sprites/titles/InvertBackground.png');
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
.button {
border-radius: 20px;
background-color: rgb(160, 160, 160);
padding: 10px 20px;
margin: 10px;
text-align: center;
text-decoration: none;
color: white;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s;
}
.button:hover {
background-color: #555;
}
.background-image {
background-size: cover;
background-repeat: no-repeat;
}
@media screen and (max-width: 2560px) {
body, html {
font-size: 18px;
}
}
@media screen and (max-width: 1920px) {
body, html {
font-size: 16px;
}
}
@media screen and (max-width: 1440px) {
body, html {
font-size: 14px;
}
}
@media screen and (max-width: 1024px) {
body, html {
font-size: 12px;
}
}
@media screen and (max-width: 768px) {
body, html {
font-size: 10px;
}
}
@media screen and (max-width: 480px) {
body, html {
font-size: 8px;
}
}
</style>
</head>
<body>
<img src="sprites/titles/Buttons.png" id="Intro" class="center">
<a href="menu.php" class="button">Vissza</a>
</body>
</html>