Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ksucpea authored Mar 2, 2024
1 parent d22af52 commit 8c529fb
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
Binary file added craftulator/Minecraft.otf
Binary file not shown.
2 changes: 1 addition & 1 deletion craftulator/index.html

Large diffs are not rendered by default.

21 changes: 18 additions & 3 deletions craftulator/style.module.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
@font-face {
font-family: 'Minecraft';
src: url('Minecraft.otf');
font-weight: 400;
font-style: normal;
}

.crafting_slot {
border-bottom: 3px solid #fefefe;
border-left: 3px solid #313131;
Expand All @@ -13,8 +20,11 @@
background: linear-gradient(#000000bd, #000000bd), url("https://i.pinimg.com/564x/49/e5/00/49e50066f7abd4b201e9a89fca949cfa.jpg");
background-size: 64px;
min-height: 100vh;
height: 100%;
width: 100%;
padding: 32px;
display: flex;
flex-wrap: wrap;
font-family: 'Minecraft';
}

.crafting_shell {
Expand All @@ -38,12 +48,17 @@
}

.blocksearcher {
width: 512px;
max-width: 300px;
height: 100%;
}

.searcher_blocks {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
max-height: 128px;
overflow: auto;
max-height: 100%;
}

.step:nth-last-of-type(1) {
display: none;
}

0 comments on commit 8c529fb

Please sign in to comment.