init
This commit is contained in:
commit
2ff3fcaa49
15 changed files with 602 additions and 0 deletions
8
examples/content/dune
Normal file
8
examples/content/dune
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
(rule
|
||||
(target script.js)
|
||||
(deps
|
||||
(file ../script.bc.js))
|
||||
(action
|
||||
(with-stdout-to
|
||||
%{target}
|
||||
(cat ../script.bc.js))))
|
||||
10
examples/content/index.html
Normal file
10
examples/content/index.html
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>gadgetobrr</title>
|
||||
<script src="/script.js" defer="defer"></script>
|
||||
<link rel="stylesheet" href="/style.css">
|
||||
</head>
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
19
examples/content/style.css
Normal file
19
examples/content/style.css
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
.brridget-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 5vh;
|
||||
left: 5vw;
|
||||
background-color: black;
|
||||
color: white;
|
||||
opacity: 0.7;
|
||||
padding-block: 2vh;
|
||||
padding-inline: 1vw;
|
||||
}
|
||||
|
||||
.brridget-grid {
|
||||
display: grid;
|
||||
position: fixed;
|
||||
top: 5vh;
|
||||
left: 4vw;
|
||||
gap: 10%;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue