-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (85 loc) · 2.48 KB
/
index.html
File metadata and controls
102 lines (85 loc) · 2.48 KB
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
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Car Customizer</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: #111;
color: #fff;
text-align: center;
}
.container {
max-width: 650px; /* antes era 900 */
margin: auto;
padding: 15px;
}
/* Logo pequena */
.logo {
width: 120px;
margin: 10px auto 25px;
display: block;
}
.title {
font-size: 26px;
margin-bottom: 20px;
font-weight: bold;
}
/* Imagens menores */
.car-image {
width: 100%;
max-width: 550px; /* garante que no desktop não fique gigante */
border-radius: 8px;
margin: 15px auto;
display: block;
box-shadow: 0 0 12px rgba(0,0,0,0.45);
}
.label {
font-size: 18px;
margin-top: 10px;
font-weight: bold;
color: #00e6ff;
}
.btn {
display: inline-block;
margin-top: 25px;
padding: 12px 22px;
background: #00e6ff;
color: #000;
text-decoration: none;
font-size: 18px;
font-weight: bold;
border-radius: 10px;
box-shadow: 0 0 12px #00e6ff;
transition: 0.25s;
}
.btn:hover {
background: #00bcd4;
box-shadow: 0 0 20px #00e6ff;
}
</style>
</head>
<body>
<div class="container">
<!-- Logo pequena -->
<img class="logo" src="logo.png" alt="Logo">
<div class="title">Car Customizer</div>
<!-- Botão -->
<a class="btn" href="https://tinyfy.io/CarCustom" target="_blank">
➤ Abrir Ferramenta
</a>
<!-- ANTES -->
<div class="label">ANTES</div>
<img class="car-image" src="hr_8387.cr2_-e1574446155118.webp" alt="Antes">
<!-- DEPOIS -->
<div class="label">DEPOIS – Opção 1</div>
<img class="car-image" src="gemini-custom-car (45).png" alt="Depois 1">
<div class="label">DEPOIS – Opção 2</div>
<img class="car-image" src="gemini-custom-car (46).png" alt="Depois 2">
</div>
</body>
</html>