@mirai/core 0.3.443 → 0.3.444
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/public/performance/index.html +175 -0
package/package.json
CHANGED
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<style>
|
|
5
|
+
body {
|
|
6
|
+
display: flex;
|
|
7
|
+
flex-direction: column;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
* {
|
|
11
|
+
font-family: var(--mirai-ui-font);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.flex {
|
|
15
|
+
align-items: center;
|
|
16
|
+
align-content: center;
|
|
17
|
+
display: flex;
|
|
18
|
+
flex-direction: row;
|
|
19
|
+
justify-content: center;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.column {
|
|
23
|
+
flex-direction: column;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.spaceBetween {
|
|
27
|
+
justify-content: space-between;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.wide {
|
|
31
|
+
width: 100%;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
header {
|
|
35
|
+
padding: 0 var(--mirai-ui-space-M);
|
|
36
|
+
height: calc(var(--mirai-ui-space-XXL) * 2);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
header > :first-child {
|
|
40
|
+
padding: var(--mirai-ui-space-M) 0;
|
|
41
|
+
border-bottom: solid 1px var(--mirai-ui-content-border);
|
|
42
|
+
color: var(--mirai-ui-content-light);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
header .options {
|
|
46
|
+
gap: var(--mirai-ui-space-L);
|
|
47
|
+
font-weight: 500;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
header .options:first-child {
|
|
51
|
+
justify-content: flex-start;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
header .options:last-child {
|
|
55
|
+
justify-content: flex-end;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
header .logo strong {
|
|
59
|
+
font-size: var(--mirai-ui-font-size-headline-1);
|
|
60
|
+
line-height: var(--mirai-ui-line-height-headline-1);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
header .logo small {
|
|
64
|
+
font-size: var(--mirai-ui-font-size-small);
|
|
65
|
+
line-height: var(--mirai-ui-line-height-small);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
main {
|
|
69
|
+
background-color: var(--mirai-ui-content-border);
|
|
70
|
+
gap: var(--mirai-ui-space-XXL);
|
|
71
|
+
height: calc(100svh - calc(var(--mirai-ui-space-XXL) * 2));
|
|
72
|
+
justify-content: center;
|
|
73
|
+
padding: 0 var(--mirai-ui-space-M);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
main > strong,
|
|
77
|
+
main > span {
|
|
78
|
+
text-align: center;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
@media only screen and (width <= 820px) {
|
|
82
|
+
header > :last-child > * {
|
|
83
|
+
width: 50%;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
header .logo {
|
|
87
|
+
align-items: flex-start;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
header .options:first-child {
|
|
91
|
+
display: none;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
main > strong {
|
|
95
|
+
font-size: calc(var(--mirai-ui-font-size-headline-1) * 1.5);
|
|
96
|
+
line-height: calc(var(--mirai-ui-line-height-headline-1) * 1.5);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
main > span {
|
|
100
|
+
font-size: var(--mirai-ui-font-size-headline-3);
|
|
101
|
+
line-height: var(--mirai-ui-line-height-headline-3);
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
@media only screen and (width > 820px) {
|
|
106
|
+
header > :last-child > * {
|
|
107
|
+
width: 33.33%;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
main > strong {
|
|
111
|
+
font-size: calc(var(--mirai-ui-font-size-headline-1) * 3);
|
|
112
|
+
line-height: calc(var(--mirai-ui-line-height-headline-1) * 3);
|
|
113
|
+
max-width: 60%;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
main > span {
|
|
117
|
+
font-size: var(--mirai-ui-font-size-headline-2);
|
|
118
|
+
line-height: var(--mirai-ui-line-height-headline-2);
|
|
119
|
+
max-width: 50%;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
</style>
|
|
123
|
+
<meta charset="utf-8" />
|
|
124
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
125
|
+
<title>Monalisa - Hotel & Resort</title>
|
|
126
|
+
<link rel="preconnect" href="https://dictionary.mirai.com" />
|
|
127
|
+
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
128
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
|
129
|
+
<link rel="preconnect" href="https://reservation.mirai.com" />
|
|
130
|
+
<link rel="preconnect" href="https://i.pravatar.cc" />
|
|
131
|
+
<!-- /site -->
|
|
132
|
+
</head>
|
|
133
|
+
<body>
|
|
134
|
+
<div data-mirai-engine="mirai_tr" data-init="false"></div>
|
|
135
|
+
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
136
|
+
<div id="mirai" data-mirai-id="100379008"></div>
|
|
137
|
+
|
|
138
|
+
<header class="flex column">
|
|
139
|
+
<div class="flex spaceBetween wide">
|
|
140
|
+
<small>Contact us directly at +34 (0) 129 039 193</small>
|
|
141
|
+
<div class="flex options">
|
|
142
|
+
<small>EUR</small>
|
|
143
|
+
<small>English</small>
|
|
144
|
+
</div>
|
|
145
|
+
</div>
|
|
146
|
+
|
|
147
|
+
<div class="flex wide menu">
|
|
148
|
+
<div class="flex options">
|
|
149
|
+
<span>Home</span>
|
|
150
|
+
<span>About Us</span>
|
|
151
|
+
<span>Our Rooms</span>
|
|
152
|
+
</div>
|
|
153
|
+
<div class="flex column logo">
|
|
154
|
+
<strong>monalisa</strong>
|
|
155
|
+
<small>HOTEL & RESORT</small>
|
|
156
|
+
</div>
|
|
157
|
+
<div class="flex options">
|
|
158
|
+
<span>Log in</span>
|
|
159
|
+
<span>Signup</span>
|
|
160
|
+
</div>
|
|
161
|
+
</div>
|
|
162
|
+
</header>
|
|
163
|
+
<main class="flex column">
|
|
164
|
+
<strong>Discover the Serenity of a Perfect Stay</strong>
|
|
165
|
+
<span>
|
|
166
|
+
Experience the calming atmosphere of our serene guest rooms, each designed with your comfort in mind.
|
|
167
|
+
</span>
|
|
168
|
+
<div data-mirai-component="finder"></div>
|
|
169
|
+
</main>
|
|
170
|
+
|
|
171
|
+
<!-- @mirai/core -->
|
|
172
|
+
<script async type="module" defer src="../../src/index.js" onload="window.mirai.core"></script>
|
|
173
|
+
<script></script>
|
|
174
|
+
</body>
|
|
175
|
+
</html>
|