-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesktop.html
45 lines (40 loc) · 1.33 KB
/
desktop.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz Bíblico - Desktop</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@material/[email protected]/dist/material.min.css">
<script type="module" src="https://cdn.jsdelivr.net/npm/@material/[email protected]/dist/material.min.js"></script>
<style>
body {
margin: 0;
padding: 16px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background-color: #fafbff;
color: rgb(32, 33, 36); /
}
.alert {
display: flex;
align-items: center;
background-color: #fff3cd;
color: #856404;
padding: 16px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
max-width: 30rem;
margin: auto;
}
.alert-icon {
margin-right: 1rem;
}
</style>
</head>
<body>
<div class="alert">
<h1 class="material-icons alert-icon">warning</h1>
<h1>Esse quiz funciona apenas para celular 😕</h1>
</div>
</body>
</html>