-
Notifications
You must be signed in to change notification settings - Fork 0
/
nobuildapp.html
51 lines (48 loc) · 1.31 KB
/
nobuildapp.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<title>Document</title>
<script type="module" src="./nobuild.js">
</script>
</head>
<body/>
<style>
.mytitle {
color: blue;
font-size: 2em;
font-family: fantasy;
text-shadow: 30px 10px 5px rgb(66, 66, 66), 1px 1px 1px rgb(151, 255, 250);
}
.info {
font-size: 0.75em;
font-family: Arial;
color: rgb(77, 3, 3);
}
.codebox {
background-color: rgb(199, 199, 199);
padding: 20px;
}
code {
font-family: Consolas, "courier new";
color: rgb(0, 0, 0);
padding: 2px;
font-size: 105%;
}
.myextra {
box-shadow: 5px 5px 3px rgb(12, 12, 12);
}
.input-ext {
width: 50px;
margin-left: 5px;
position: absolute;
top: 0px;
}
</style>
</html>