Chapter 1: Example
Chapter Text
The Case of the Murdle Workskin
Template for Fic-in-a-Box 2022
[UPDATE: Someone has now made a clickable Murdle work skin! If you want a version with clickable grids, check it out!]
Greetings, Murdlers! This is a work skin I made for creating murdle-related fanworks on AO3. It's my first time making an AO3 skin, so the code is probably not the most elegant or economical, but I hope it's useful all the same!
This space is, of course, where the main text of your mystery will go. You may want to put some of it in bold. You can describe the details of the case here, or just introduce the cards.
If you want to show the backs of the cards before they get "flipped," here's what they look like:
|
And here's the content on the front side of the cards:
|
Here's a mid-sized version of the cards, if you want to include short descriptions:
|
And here's a full-size version of a card, which can show more text:
🐸
A TOXIC FROG
This card will expand based on the amount of text you enter, so you can write as much as you want here. You can add special clues or just describe suspects, weapons, and locations on these cards.
Light-weight • Made of a live animal
Once you've got all your cards displayed in one or more of the formats above, you'll probably want to write up a list of evidence. It can go into a box, like this:
• You can write as many clues as you want here.
• The murdle weapon was found under velvet cushions.
• A toxic frog was not in a secret chamber.
• The suspect who brought the toxic frog was a Gemini.
Here's a notebook you can include as well, with a grid to help Deductive Logico solve your murdle:
NOTEBOOK
You can write notes in here if you want, or you can leave this space blank.
Here's a grid with space for three suspects, weapons, and locations:
* | 👶 | 👶 | 👶 | 🌳 | 🌳 | 🌳 |
🔪 | ||||||
🔪 | ||||||
🔪 | ||||||
🌳 | ||||||
🌳 | ||||||
🌳 |
Here's a grid that includes motives, and uses a text-shadow over the emojis:
* | 👶 | 👶 | 👶 | 🌳 | 🌳 | 🌳 | 💰 | 💰 | 💰 |
🔪 | |||||||||
🔪 | |||||||||
🔪 | |||||||||
🌳 | |||||||||
🌳 | |||||||||
🌳 | |||||||||
💰 | |||||||||
💰 | |||||||||
💰 |
And here's a Sunday-sized grid with space for six suspects, weapons, and locations:
* | 👶 | 👶 | 👶 | 👶 | 👶 | 👶 | 🌳 | 🌳 | 🌳 | 🌳 | 🌳 | 🌳 |
🔪 | ||||||||||||
🔪 | ||||||||||||
🔪 | ||||||||||||
🔪 | ||||||||||||
🔪 | ||||||||||||
🔪 | ||||||||||||
🌳 | ||||||||||||
🌳 | ||||||||||||
🌳 | ||||||||||||
🌳 | ||||||||||||
🌳 | ||||||||||||
🌳 |
RESOLUTION
You can put the solution to your murdle at the end, like this, or you can hide it in a separate chapter. There's also some other extra stuff you can add below.
♔♞♗♞♕♚♘♝♖♝♗♛♘♜
EXTRA STUFF
Here are some cards you can use to indicate a hint:
|
🔮
You can add any information here that Inspector Irratino may have gleaned from the collective unconscious.
Here are some grids with the colors set so that they can flow with the main text, rather than going inside the notebook:
* | 👶 | 👶 | 👶 | 🌳 | 🌳 | 🌳 |
🔪 | ||||||
🔪 | ||||||
🔪 | ||||||
🔪 | ||||||
🌳 | ||||||
🌳 | ||||||
🌳 |
The version with motives, again with a text shadow:
* | 👶 | 👶 | 👶 | 🌳 | 🌳 | 🌳 | 💰 | 💰 | 💰 |
🔪 | |||||||||
🔪 | |||||||||
🔪 | |||||||||
🔪 | |||||||||
🌳 | |||||||||
🌳 | |||||||||
🌳 | |||||||||
💰 | |||||||||
💰 | |||||||||
💰 |
And the Sunday-sized grid:
* | 👶 | 👶 | 👶 | 👶 | 👶 | 👶 | 🌳 | 🌳 | 🌳 | 🌳 | 🌳 | 🌳 |
🔪 | ||||||||||||
🔪 | ||||||||||||
🔪 | ||||||||||||
🔪 | ||||||||||||
🔪 | ||||||||||||
🔪 | ||||||||||||
🌳 | ||||||||||||
🌳 | ||||||||||||
🌳 | ||||||||||||
🌳 | ||||||||||||
🌳 | ||||||||||||
🌳 |
Chapter 2: Tutorial Part 1: Creating Your Work Skin (CSS)
Chapter Text
For reference, here's a link to the Murdle website: https://murdle.com/
I tried to make the different parts of this work skin somewhat versatile so you can choose which elements to use and how to arrange them to create your own logic puzzle. In this chapter, I'll describe the important parts of the CSS code, and which parts you may want to edit. The next chapter contains the bare code for you to copy and paste, and Chapter 4 is the tutorial for using the skin by adding HTML to your work. The codes for the logic grids are in Chapter 5.
Step 1: Create a New Work Skin
The first thing you'll need to do is create a work skin. You can do this by going to your AO3 dashboard and clicking on "Skins" in the menu (which should be either at the top or on the lefthand side of your screen). You'll be creating a work skin (not a site skin), so choose the button that says "My Work Skins," and then select "Create Work Skin." On the next page, you'll need to give your skin a title. This won't be public, so you can call it whatever you want. (The title has to be unique, though, so it may be good to add your username to the end, in case someone else's skin has the same name.) Next, paste the code from Chapter 3 of this tutorial into the large text box labelled "CSS." Once you hit "Submit," your work skin will be ready to use.
(You can edit your work skin at any time. However, note that if you make changes to the CSS that contain errors or elements that aren't allowed on AO3, those changes will simply disappear as soon as you try to save them, and occasionally, other parts of the code will disappear with them. If you want to make edits, I'd recommend always keeping a copy of the most recent working version of your code in a separate document, so nothing gets lost.)
The next thing you'll need to do is post a new work and add the necessary HTML to apply the work skin. We'll come to that in a Chapter 4, but first I want to explain the CSS so you can make changes to it if you want.
If you don't plan to make any changes to the CSS, you can skip to Chapter 3 and copy the code now!
CSS Notes
The Basic Murdle Page Style
This is the overall container for everything else. It's the part of the code that sets the background color, the font, and the color and size of the text. I used the background color from the Murdle website (#fbfbf9) and put a border around it, but you could also delete the background color and border elements, and just use AO3's style for the background. (In that case, you might need to delete the background color settings in some other elements, e.g. the outer cells of the logic grids.)
#workskin .main {
background: #fbfbf9;
color: #000000;
font-family: "Courier New", Courier;
font-size: 18px;
line-height: 1.7;
border: 1px black solid;
border-bottom: 1px black solid;
padding-top: 1.5em;
padding-bottom: 1em;
padding-right: 1.3em;
padding-left: 1em;
border-radius: 10px;
}
Work Title
This section styles the title of the work, as it displays at the top center of the page. The code here will automatically transform the title to all-uppercase, like Murdle titles. To remove this feature, simply delete the line "text-transform: uppercase" from the code. If you want your whole title to appear in the normal AO3 style, not the Murdle style, you can delete this whole segment of code entirely.
#workskin .title {
font-family: "Courier New", Courier;
font-weight: bold;
color: #A30B37;
text-transform: uppercase;
}
Case Title and Subtitle
This piece of code imitates the way the Murdle website displays the name of the day's case and date, and looks like this:
The Mystery of the Toxic Blowfish
Murdle for Aug 16, 2022
You can of course use these for any other titles or subtitles you want to include in your work as well. Like the main title, these are set to automatically transform text into uppercase.
#workskin .case-title {
font-family: "Courier New", Courier;
font-size: 26px;
font-weight: bold;
color: #A30B37;
line-height: 1.5;
text-transform: uppercase;
}
#workskin .subtitle {
font-family: "Courier New", Courier;
font-weight: bold;
font-size: 18px;
color: #A30B37;
line-height: 1.5;
text-transform: uppercase;
}
Cards: Reverse Side
The following segments of code give the shape and color of the back (red) side of the evidence cards. The first part ("cardback") gives the size and color of the card, and the second part ("card-small-emoji") styles the emoji.
#workskin .cardback {
background: #A30B37;
color: #fbfbf9;
border: 5px black solid;
border-bottom: 5px black solid;
padding-top: 1em;
padding-bottom: 1em;
padding-right: 1em;
padding-left: 1em;
border-radius: 10px;
width: 105px;
height: 190px;
margin: auto;
float: left;
}
#workskin .card-small-emoji {
font-family: "Courier New", Courier;
font-weight: bold;
font-size: 90px;
line-height: 190px;
display: block;
text-align: center;
margin: auto;
}
Cards: Front Side, Small Version
The pieces of code below are for displaying small images of the front side of the cards. These are just an emoji and a name or short description, like the cards you see on the Murdle site before you click to "investigate" them.
The first part of this code styles the card (size, color, border). The second part styles the text.
#workskin .card-small {
background: #ffffff;
color: black;
font-size: 18px;
font-family: "Courier New", Courier;
line-height: 18px;
display: block;
border: 5px black solid;
border-bottom: 5px black solid;
padding-top: 1em;
padding-bottom: 1em;
padding-right: 1em;
padding-left: 1em;
border-radius: 10px;
width: 105px;
height: 190px;
margin: auto;
float: left;
}
#workskin .card-small-name {
font-family: "Courier New", Courier;
font-size: 18px;
text-align: center;
color: #000000;
font-weight: bold;
text-transform: uppercase;
}
Card Emojis
This is the code for styling the emojis that display on the front sides of all the cards.
#workskin .card-emoji {
font-family: "Courier New", Courier;
font-size: 65px;
text-align: center;
font-weight: bold;
margin: auto;
}
Cards: Front Side, Mid-Sized Version
The next four pieces of code are all for styling the mid-sized versions of the evidence cards. This includes styling for the overall card (color, size, border), the name/title, the main text (describing the suspect/weapon/location), and the statistics (star sign, material something is made of, indoors or outdoors, etc.).
#workskin .card {
background: #ffffff;
color: black;
font-size: 18px;
font-family: "Courier New", Courier;
line-height: 1.7;
display: block;
border: 5px black solid;
border-bottom: 5px black solid;
padding-top: .5em;
padding-bottom: .5em;
padding-right: .5em;
padding-left: .5em;
border-radius: 10px;
width: 200px;
height: 350px;
margin: auto;
float: left;
}
#workskin .card-name {
font-family: "Courier New", Courier;
font-size: 22px;
text-align: center;
color: #A30B37;
font-weight: bold;
text-transform: uppercase;
}
#workskin .card-text {
font-family: "Courier New", Courier;
font-size: 18px;
text-align: center;
color: black;
}
#workskin .card-stats {
font-family: "Courier New", Courier;
font-size: 18px;
text-align: center;
color: black;
font-weight: bold;
text-transform: uppercase;
}
Cards: Front Side, Large Version
The next two pieces of code are for styling the full-sized cards, to set the basic size and colors and to style the text of the description. Apart from these elements, the styling for the large cards is the same as for the small and mid-sized ones above (the same code is used for the emojis, titles, and statistics).
As an aside, note that the "max-width" for this element (and several others) is set to "85%." This is to prevent these elements from overflowing or stretching out the page when viewed on mobile or small tablet screens. If you want to change the width of the card, use the "width" option, and keep "max-width" at 85% or lower.
#workskin .card-large {
background: #ffffff;
color: black;
font-size: 18px;
font-family: "Courier New", Courier;
line-height: 1.7;
display: block;
border: 5px black solid;
border-bottom: 5px black solid;
padding-top: .5em;
padding-bottom: .5em;
padding-right: 1.5em;
padding-left: 1.5em;
border-radius: 10px;
width: 300px;
max-width: 85%;
min-height: 500px;
margin: auto;
}
#workskin .card-large-text {
font-family: "Courier New", Courier;
font-size: 18px;
color: black;
text-align: left;
padding-right: .2em;
padding-left: 1.2em;
}
Card Display Tables
The following pieces of code are for styling the tables that display multiple cards side by side. The first part is the code for the table of smaller cards (front or back), and the second part is the code for the table of mid-sized (front) cards. The third code segment below, called "divider," creates extra padding around the cards so that there's space between them.
You can adjust how far apart the cards are by increasing the amount of padding around them (currently set at .2em on all sides). You may also need to increase the "width" value in the relevant table, to prevent the cards from splitting onto two separate lines. (Keeping the "width" setting close to the actual width of the cards keeps them centered on the page, so try to only increase the width as much as you need to. That is, unless you don't care about having the cards centered, in which case you can delete the "width" element altogether, and the cards will align to the left.)
Similarly, if you want to display four cards side by side (e.g. in order to include a "motive" card), you'll need to set the "width" to a higher value to give enough room for four cards to display in a row. (Or, again, simply delete the "width" element, if you don't want the cards to be centered.)
#workskin table.card-smalltable {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 490px;
max-width: 85%;
margin: auto;
}
#workskin table.cards {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 715px;
max-width: 85%;
margin: auto;
}
#workskin .divider {
position: relative;
float: left;
padding-top: .2em;
padding-bottom: .2em;
padding-right: .2em;
padding-left: .2em;
border: none;
margin: auto;
}
Evidence Box
The code below is for styling the box with the list of evidence.
#workskin .evidence {
background: #fff5e2;
color: black;
border: 5px black solid;
border-bottom: 5px black solid;
font-family: "Courier New", Courier;
padding-top: 1em;
padding-bottom: 1em;
padding-right: 1.5em;
padding-left: 1.5em;
line-height: 1.7;
border-radius: 10px;
font-size: 18px;
font-weight: bold;
width: 85%;
max-width: 600px;
margin: auto;
}
Notebook
The next two pieces of code are for styling the notebook. The first part sets the color, size, border, and overall font properties. The second part sets the font properties for the title (e.g. the word "NOTEBOOK"). The actual Murdle notebook does not display any title, so you can of course omit this element entirely if you want. It's currently set to red ("color: #A30B37") and to automatic uppercase ("text-transform: uppercase"), but you can change or remove these properties.
#workskin .notebook {
background: #fff5e2;
color: black;
border: 5px black solid;
border-bottom: 5px black solid;
font-family: "Courier New", Courier;
padding-top: .3em;
padding-bottom: 1.5em;
padding-right: 1.5em;
padding-left: 1.5em;
line-height: 1.7;
border-radius: 10px;
display: block;
font-size: 18px;
width: 85%;
max-width: 600px;
margin: auto;
}
#workskin .notebook-title {
text-align: center;
font-family: "Courier New", Courier;
font-weight: bold;
font-size: 25px;
color: #A30B37;
line-height: 1.7;
text-transform: uppercase;
}
Logic Grids Inside the Notebook
The next few pieces of code are for styling the table that forms the logic grid. The first three codes, "table.grid-small," "table.grid-med," and "table.grid-large," are for styling the three different sizes of grid (the small one works best for a 3x3x3 grid, the medium-sized for 3x3x3x3, and the large-sized for anything with four or more suspects). The other parts are for styling the individual cells of the table.
The cells styled with "td.grid" will have a dark outline. The cells styled with "td.grid-none" will have no outline; you can use these to fill out the parts of the table where you don't want any grid to show. The other styles ("corner" and "emoji") are redundant (they have the same style as "grid-none"), but are included in case you want to make changes that affect the emoji cells or the upper-left corner cell without changing the other parts of the table.
You can change the font size if you want the emojis to be smaller or larger. Note that this may change the dimensions of the whole table, though.
#workskin table.grid-small {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 85%;
max-width: 305px;
}
#workskin table.grid-med {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 85%;
max-width: 450px;
}
#workskin table.grid-large {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 85%;
max-width: 550px;
}
#workskin td.grid {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border: 2px solid;
border-collapse: collapse;
width: 30px;
height: 30px;
}
#workskin td.grid-none {
background: #fff5e2;
color: #fff5e2;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border: none;
border-collapse: collapse;
width: 30px;
height: 30px;
}
#workskin td.corner {
background: #fff5e2;
color: #fff5e2;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 30px;
height: 30px;
border: none;
}
#workskin td.emoji {
background: #fff5e2;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 30px;
height: 30px;
border: none;
}
Logic Grids Outside the Notebook
The next set of codes is identical to those above, except that the background colors are set to display against the background of the main page rather than the notebook. Use these versions of the code if you don't want to put the logic grid inside the notebook container. (You can, of course, also change the background colors if you want to match a different background, or delete the background colors if you want to use AO3's colors.)
#workskin table.grid2-small {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 85%;
max-width: 305px;
}
#workskin table.grid2-med {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 85%;
max-width: 450px;
}
#workskin table.grid2-large {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 85%;
max-width: 550px;
}
#workskin td.grid2 {
background: #ffffff;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border: 2px solid;
border-collapse: collapse;
width: 30px;
height: 30px;
}
#workskin td.grid2-none {
background: #fbfbf9;
color: #fbfbf9;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border: none;
border-collapse: collapse;
width: 30px;
height: 30px;
}
#workskin td.corner2 {
background: #fbfbf9;
color: #fbfbf9;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 30px;
height: 30px;
border: none;
}
#workskin td.emoji2 {
background: #fbfbf9;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 30px;
height: 30px;
border: none;
}
Text Color
Some parts of the Murdle website, such as the resolution text, are in red. The following code will let you create red text with a "span" tag.
#workskin .redtext {
color: #A30B37;
}
You can use this same piece of code to allow fonts in other colors as well. Simply make a copy of the CSS code above, change the hex code to the color you want, and give the code segment a new name (e.g. "greentext" instead of "redtext"). In your HTML, you can then use <span class="greentext"></span> tags around any text you want to change to that color.
Chess Pieces
This code styles the chess pieces to display at a larger size than the rest of the text. You can also make the colors of the pieces alternate, using the text color code just above. To change the size of the chess pieces, simply adjust the value of "font-size" below.
#workskin .chess {
display: block;
line-height: 1.7;
word-break: break-word;
font-family: "Courier New", Courier;
text-align: center;
font-weight: bold;
font-size: 40px;
border: none;
}
Hint Cards: Reverse Side, No Text
The next two pieces of code are for styling the back side of a card to display Inspector Irratino's crystal ball, the symbol that shows on the "hint" page if you choose to ask him for a hint. The first part of the code styles the color and size of the card, and the second part styles the emoji.
The code below is designed for displaying a single hint card. If you want to display several of them together (like the three clue cards you see at the beginning of a Murdle puzzle, together in a horizontal row), add the line "float: left;" to the end of the first CSS segment below. This will prevent the cards from overflowing the width of the screen on mobile. You'll then be able to copy the HTML for one of the tables for small cards (you can find these tables in Chapter 4) and substitute the hint cards in place of the clue cards.
#workskin .cardhintback {
background: #000000;
color: #ffffff;
font-size: 18px;
line-height: 18px;
display: block;
font-family: "Courier New", Courier;
border: 5px white solid;
border-bottom: 5px white solid;
outline: 2px black solid;
padding-top: 1em;
padding-bottom: 1em;
padding-right: 1em;
padding-left: 1em;
border-radius: 10px;
width: 105px;
height: 190px;
margin: auto;
}
#workskin .card-hint-back-emoji {
font-family: "Courier New", Courier;
font-weight: bold;
font-size: 90px;
line-height: 190px;
display: block;
text-align: center;
margin: auto;
}
Hint Cards: Reverse Side, With Text
The next two pieces of code are for styling the contents of a version of a "hint card" with text (e.g. "Ask for a hint?").
#workskin .card-hint-back-emoji2 {
font-family: "Courier New", Courier;
font-weight: bold;
font-size: 90px;
display: block;
text-align: center;
margin: auto;
}
#workskin .card-hint-back-text {
font-family: "Courier New", Courier;
font-size: 18px;
text-align: center;
color: #ffffff;
font-weight: bold;
text-transform: uppercase;
}
Hint Cards: Front Side
The code below is for styling the front side of a large/full-sized "hint card." This is essentially the same styling used on the large evidence cards, but with the colors from Irratino's hint page.
#workskin .card-hint-large {
background: #000000;
color: #ffffff;
font-size: 18px;
font-family: "Courier New", Courier;
line-height: 1.7;
display: block;
border: 5px white solid;
border-bottom: 5px white solid;
outline: 2px black solid;
padding-top: .5em;
padding-bottom: .5em;
padding-right: 1.5em;
padding-left: 1.5em;
border-radius: 10px;
width: 300px;
max-width: 85%;
min-height: 500px;
margin: auto;
}
#workskin .card-hint-large-text {
font-family: "Courier New", Courier;
font-size: 18px;
color: #ffffff;
text-align: left;
padding-right: .2em;
padding-left: 1.2em;
}
Color Codes
The code segments below are for styling the emojis in different colors, including the canonical colors of all the recurring Murdle suspects.
#workskin .NavyColor {
color: transparent;
text-shadow: 0 0 0 #000080;
}
#workskin .BlueColor {
color: transparent;
text-shadow: 0 0 0 #016FB9;
}
#workskin .MaroonColor {
color: transparent;
text-shadow: 0 0 0 #AF3B6E;
}
#workskin .AzureColor {
color: transparent;
text-shadow: 0 0 0 #007FFF;
}
#workskin .SlateColor {
color: transparent;
text-shadow: 0 0 0 #708090;
}
#workskin .TuscanyColor {
color: transparent;
text-shadow: 0 0 0 #CDA2AB;
}
#workskin .AubergineColor {
color: transparent;
text-shadow: 0 0 0 #693B58;
}
#workskin .RaspberryColor {
color: transparent;
text-shadow: 0 0 0 #E30B5D;
}
#workskin .ChampagneColor {
color: transparent;
text-shadow: 0 0 0 #F4C97A;
}
#workskin .VerdigrisColor {
color: transparent;
text-shadow: 0 0 0 #48A9A6;
}
#workskin .GlaucousColor {
color: transparent;
text-shadow: 0 0 0 #6082B6;
}
#workskin .CrimsonColor {
color: transparent;
text-shadow: 0 0 0 #BA181B;
}
#workskin .GreyColor {
color: transparent;
text-shadow: 0 0 0 #8F8F8F;
}
#workskin .MangoColor {
color: transparent;
text-shadow: 0 0 0 #F08A4B;
}
#workskin .CoffeeColor {
color: transparent;
text-shadow: 0 0 0 #322214;
}
#workskin .RoseColor {
color: transparent;
text-shadow: 0 0 0 #FF66CC;
}
#workskin .PineColor {
color: transparent;
text-shadow: 0 0 0 #097A74;
}
#workskin .VioletColor {
color: transparent;
text-shadow: 0 0 0 #A54CFF;
}
#workskin .LavenderColor {
color: transparent;
text-shadow: 0 0 0 #967BB6;
}
#workskin .HoneyColor {
color: transparent;
text-shadow: 0 0 0 #F6AE2D;
}
#workskin .SaffronColor {
color: transparent;
text-shadow: 0 0 0 #F4C430;
}
#workskin .TangerineColor {
color: transparent;
text-shadow: 0 0 0 #F28500;
}
#workskin .CopperColor {
color: transparent;
text-shadow: 0 0 0 #B87333;
}
#workskin .AmaranthColor {
color: transparent;
text-shadow: 0 0 0 #B6244F;
}
#workskin .ApplegreenColor {
color: transparent;
text-shadow: 0 0 0 #66B447;
}
#workskin .CeladonColor {
color: transparent;
text-shadow: 0 0 0 #ACE1AF;
}
#workskin .EmeraldColor {
color: transparent;
text-shadow: 0 0 0 #33CA7F;
}
#workskin .RuleanColor {
color: transparent;
text-shadow: 0 0 0 #1DACD6;
}
#workskin .LapisColor {
color: transparent;
text-shadow: 0 0 0 #125E8A;
}
#workskin .AureolinColor {
color: transparent;
text-shadow: 0 0 0 #F2DB00;
}
#workskin .VermillionColor {
color: transparent;
text-shadow: 0 0 0 #E34234;
}
#workskin .MauveColor {
color: transparent;
text-shadow: 0 0 0 #E0B0FF;
}
#workskin .EminenceColor {
color: transparent;
text-shadow: 0 0 0 #6C3082;
}
#workskin .TanColor {
color: transparent;
text-shadow: 0 0 0 #FFF5E2;;
}
#workskin .BlackColor {
color: transparent;
text-shadow: 0 0 0 #000000;
}
#workskin .WhiteColor {
color: transparent;
text-shadow: 0 0 0 #FFFFFF;
}
#workskin .Color {
color: #000000;
}
Odds and Ends
Finally, these last small pieces of code were added to help the rest of the code work in places where it would otherwise not display properly. The "noMargin" code (adopted from lirin's Old!Reddit work skin) prevents AO3 from putting large margins between paragraphs; I've used it in a few places where the spacing was otherwise too wide. The "floatleft" code allows cards to display in a row on desktop without overflowing the screen on mobile. The "clearleft" clears the "float" property so that it doesn't mess up other parts of the page.
#workskin .noMargin {
margin: 0;
}
#workskin .floatleft {
float: left;
color: transparent;
}
#workskin .clearleft {
clear: left;
}
That's all the CSS. You can find a full copy of it in the next chapter. Copy and paste it into the CSS box when you create your new work skin, and then proceed to Chapter 4 for instructions on how to apply the skin to a work.
Chapter 3: CSS Code
Chapter Text
Copy the CSS code from the text box below and paste it into the CSS box when you create your new work skin. (See Chapter 2 of this guide for information about what the different segments of code are for, and see Chapter 4 for instructions on how to use the work skin once you've saved it. Chapter 5 has the code for the logic grids, and Chapter 6 has a full blank template for a 3x3x3 Murdle puzzle.)
#workskin .main {
background: #fbfbf9;
color: #000000;
font-family: "Courier New", Courier;
font-size: 18px;
line-height: 1.7;
border: 1px black solid;
border-bottom: 1px black solid;
padding-top: 1.5em;
padding-bottom: 1em;
padding-right: 1.3em;
padding-left: 1em;
border-radius: 10px;
}
#workskin .title {
font-family: "Courier New", Courier;
font-weight: bold;
color: #A30B37;
text-transform: uppercase;
}
#workskin .case-title {
font-family: "Courier New", Courier;
font-size: 26px;
font-weight: bold;
color: #A30B37;
line-height: 1.5;
text-transform: uppercase;
}
#workskin .subtitle {
font-family: "Courier New", Courier;
font-weight: bold;
font-size: 18px;
color: #A30B37;
line-height: 1.5;
text-transform: uppercase;
}
#workskin .cardback {
background: #A30B37;
color: #fbfbf9;
border: 5px black solid;
border-bottom: 5px black solid;
padding-top: 1em;
padding-bottom: 1em;
padding-right: 1em;
padding-left: 1em;
border-radius: 10px;
width: 105px;
height: 190px;
margin: auto;
float: left;
}
#workskin .card-small-emoji {
font-family: "Courier New", Courier;
color: transparent;
font-weight: bold;
font-size: 90px;
line-height: 190px;
display: block;
text-align: center;
margin: auto;
text-shadow: 0 0 0 #fff5e2;
}
#workskin .card-small {
background: #ffffff;
color: black;
font-size: 18px;
font-family: "Courier New", Courier;
line-height: 18px;
display: block;
border: 5px black solid;
border-bottom: 5px black solid;
padding-top: 1em;
padding-bottom: 1em;
padding-right: 1em;
padding-left: 1em;
border-radius: 10px;
width: 105px;
height: 190px;
margin: auto;
float: left;
}
#workskin .card-small-name {
font-family: "Courier New", Courier;
font-size: 18px;
text-align: center;
color: #000000;
font-weight: bold;
text-transform: uppercase;
}
#workskin .card-emoji {
font-family: "Courier New", Courier;
font-size: 65px;
text-align: center;
color: transparent;
font-weight: bold;
margin: auto;
text-shadow: 0 0 0 #000000;
}
#workskin .card {
background: #ffffff;
color: black;
font-size: 18px;
font-family: "Courier New", Courier;
line-height: 1.7;
display: block;
border: 5px black solid;
border-bottom: 5px black solid;
padding-top: .5em;
padding-bottom: .5em;
padding-right: .5em;
padding-left: .5em;
border-radius: 10px;
width: 200px;
height: 350px;
margin: auto;
float: left;
}
#workskin .card-name {
font-family: "Courier New", Courier;
font-size: 22px;
text-align: center;
color: #000000;
font-weight: bold;
text-transform: uppercase;
}
#workskin .card-text {
font-family: "Courier New", Courier;
font-size: 18px;
text-align: center;
color: black;
}
#workskin .card-stats {
font-family: "Courier New", Courier;
font-size: 18px;
text-align: center;
color: black;
font-weight: bold;
text-transform: uppercase;
}
#workskin .card-large {
background: #ffffff;
color: black;
font-size: 18px;
font-family: "Courier New", Courier;
line-height: 1.7;
display: block;
border: 5px black solid;
border-bottom: 5px black solid;
padding-top: .5em;
padding-bottom: .5em;
padding-right: 1.5em;
padding-left: 1.5em;
border-radius: 10px;
width: 300px;
max-width: 85%;
min-height: 500px;
margin: auto;
}
#workskin .card-large-text {
font-family: "Courier New", Courier;
font-size: 18px;
color: black;
text-align: left;
padding-right: .2em;
padding-left: 1.2em;
}
#workskin table.card-smalltable {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 490px;
max-width: 85%;
margin: auto;
}
#workskin table.cards {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 715px;
max-width: 85%;
margin: auto;
}
#workskin .divider {
position: relative;
float: left;
padding-top: .2em;
padding-bottom: .2em;
padding-right: .2em;
padding-left: .2em;
border: none;
margin: auto;
}
#workskin .evidence {
background: #fff5e2;
color: black;
border: 5px black solid;
border-bottom: 5px black solid;
font-family: "Courier New", Courier;
padding-top: 1em;
padding-bottom: 1em;
padding-right: 1.5em;
padding-left: 1.5em;
line-height: 1.7;
border-radius: 10px;
font-size: 18px;
font-weight: bold;
width: 85%;
max-width: 600px;
margin: auto;
}
#workskin .notebook {
background: #fff5e2;
color: black;
border: 5px black solid;
border-bottom: 5px black solid;
font-family: "Courier New", Courier;
padding-top: .3em;
padding-bottom: 1.5em;
padding-right: 1.5em;
padding-left: 1.5em;
line-height: 1.7;
border-radius: 10px;
display: block;
font-size: 18px;
width: 85%;
max-width: 600px;
margin: auto;
}
#workskin .notebook-title {
text-align: center;
font-family: "Courier New", Courier;
font-weight: bold;
font-size: 25px;
color: #A30B37;
line-height: 1.7;
text-transform: uppercase;
}
#workskin table.grid-small {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 85%;
max-width: 305px;
}
#workskin table.grid-med {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 85%;
max-width: 450px;
}
#workskin table.grid-large {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 85%;
max-width: 550px;
}
#workskin td.grid {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border: 2px solid;
border-collapse: collapse;
width: 30px;
height: 30px;
}
#workskin td.grid-none {
background: #fff5e2;
color: #fff5e2;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border: none;
border-collapse: collapse;
width: 30px;
height: 30px;
}
#workskin td.corner {
background: #fff5e2;
color: #fff5e2;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 30px;
height: 30px;
border: none;
}
#workskin td.emoji {
background: #fff5e2;
color: transparent;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 30px;
height: 30px;
border: none;
text-shadow: 0 0 0 #000000;
}
#workskin table.grid2-small {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 85%;
max-width: 305px;
}
#workskin table.grid2-med {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 85%;
max-width: 450px;
}
#workskin table.grid2-large {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 85%;
max-width: 550px;
}
#workskin td.grid2 {
background: #ffffff;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border: 2px solid;
border-collapse: collapse;
width: 30px;
height: 30px;
}
#workskin td.grid2-none {
background: #fbfbf9;
color: #fbfbf9;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border: none;
border-collapse: collapse;
width: 30px;
height: 30px;
}
#workskin td.corner2 {
background: #fbfbf9;
color: #fbfbf9;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 30px;
height: 30px;
border: none;
}
#workskin td.emoji2 {
background: #fbfbf9;
color: transparent;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 30px;
height: 30px;
border: none;
text-shadow: 0 0 0 #000000;
}
#workskin .redtext {
color: #A30B37;
}
#workskin .chess {
display: block;
line-height: 1.7;
word-break: break-word;
font-family: "Courier New", Courier;
text-align: center;
font-weight: bold;
font-size: 40px;
border: none;
}
#workskin .cardhintback {
background: #000000;
color: #ffffff;
font-size: 18px;
line-height: 18px;
display: block;
font-family: "Courier New", Courier;
border: 5px white solid;
border-bottom: 5px white solid;
outline: 2px black solid;
padding-top: 1em;
padding-bottom: 1em;
padding-right: 1em;
padding-left: 1em;
border-radius: 10px;
width: 105px;
height: 190px;
margin: auto;
}
#workskin .card-hint-back-emoji {
font-family: "Courier New", Courier;
color: transparent;
font-weight: bold;
font-size: 90px;
line-height: 190px;
display: block;
text-align: center;
margin: auto;
text-shadow: 0 0 0 #ffffff;
}
#workskin .card-hint-back-emoji2 {
font-family: "Courier New", Courier;
color: transparent;
font-weight: bold;
font-size: 90px;
display: block;
text-align: center;
margin: auto;
text-shadow: 0 0 0 #ffffff;
}
#workskin .card-hint-back-text {
font-family: "Courier New", Courier;
font-size: 18px;
text-align: center;
color: #ffffff;
font-weight: bold;
text-transform: uppercase;
}
#workskin .card-hint-large {
background: #000000;
color: #ffffff;
font-size: 18px;
font-family: "Courier New", Courier;
line-height: 1.7;
display: block;
border: 5px white solid;
border-bottom: 5px white solid;
outline: 2px black solid;
padding-top: .5em;
padding-bottom: .5em;
padding-right: 1.5em;
padding-left: 1.5em;
border-radius: 10px;
width: 300px;
max-width: 85%;
min-height: 500px;
margin: auto;
}
#workskin .card-hint-large-text {
font-family: "Courier New", Courier;
font-size: 18px;
color: #ffffff;
text-align: left;
padding-right: .2em;
padding-left: 1.2em;
}
#workskin .NavyColor {
color: transparent;
text-shadow: 0 0 0 #000080;
}
#workskin .BlueColor {
color: transparent;
text-shadow: 0 0 0 #016FB9;
}
#workskin .MaroonColor {
color: transparent;
text-shadow: 0 0 0 #AF3B6E;
}
#workskin .AzureColor {
color: transparent;
text-shadow: 0 0 0 #007FFF;
}
#workskin .SlateColor {
color: transparent;
text-shadow: 0 0 0 #708090;
}
#workskin .TuscanyColor {
color: transparent;
text-shadow: 0 0 0 #CDA2AB;
}
#workskin .AubergineColor {
color: transparent;
text-shadow: 0 0 0 #693B58;
}
#workskin .RaspberryColor {
color: transparent;
text-shadow: 0 0 0 #E30B5D;
}
#workskin .ChampagneColor {
color: transparent;
text-shadow: 0 0 0 #F4C97A;
}
#workskin .VerdigrisColor {
color: transparent;
text-shadow: 0 0 0 #48A9A6;
}
#workskin .GlaucousColor {
color: transparent;
text-shadow: 0 0 0 #6082B6;
}
#workskin .CrimsonColor {
color: transparent;
text-shadow: 0 0 0 #BA181B;
}
#workskin .GreyColor {
color: transparent;
text-shadow: 0 0 0 #8F8F8F;
}
#workskin .MangoColor {
color: transparent;
text-shadow: 0 0 0 #F08A4B;
}
#workskin .CoffeeColor {
color: transparent;
text-shadow: 0 0 0 #322214;
}
#workskin .RoseColor {
color: transparent;
text-shadow: 0 0 0 #FF66CC;
}
#workskin .PineColor {
color: transparent;
text-shadow: 0 0 0 #097A74;
}
#workskin .VioletColor {
color: transparent;
text-shadow: 0 0 0 #A54CFF;
}
#workskin .LavenderColor {
color: transparent;
text-shadow: 0 0 0 #967BB6;
}
#workskin .HoneyColor {
color: transparent;
text-shadow: 0 0 0 #F6AE2D;
}
#workskin .SaffronColor {
color: transparent;
text-shadow: 0 0 0 #F4C430;
}
#workskin .TangerineColor {
color: transparent;
text-shadow: 0 0 0 #F28500;
}
#workskin .CopperColor {
color: transparent;
text-shadow: 0 0 0 #B87333;
}
#workskin .AmaranthColor {
color: transparent;
text-shadow: 0 0 0 #B6244F;
}
#workskin .ApplegreenColor {
color: transparent;
text-shadow: 0 0 0 #66B447;
}
#workskin .CeladonColor {
color: transparent;
text-shadow: 0 0 0 #ACE1AF;
}
#workskin .EmeraldColor {
color: transparent;
text-shadow: 0 0 0 #33CA7F;
}
#workskin .RuleanColor {
color: transparent;
text-shadow: 0 0 0 #1DACD6;
}
#workskin .LapisColor {
color: transparent;
text-shadow: 0 0 0 #125E8A;
}
#workskin .AureolinColor {
color: transparent;
text-shadow: 0 0 0 #F2DB00;
}
#workskin .VermillionColor {
color: transparent;
text-shadow: 0 0 0 #E34234;
}
#workskin .MauveColor {
color: transparent;
text-shadow: 0 0 0 #E0B0FF;
}
#workskin .EminenceColor {
color: transparent;
text-shadow: 0 0 0 #6C3082;
}
#workskin .TanColor {
color: transparent;
text-shadow: 0 0 0 #FFF5E2;;
}
#workskin .BlackColor {
color: transparent;
text-shadow: 0 0 0 #000000;
}
#workskin .WhiteColor {
color: transparent;
text-shadow: 0 0 0 #FFFFFF;
}
#workskin .Color {
color: #000000;
}
#workskin .noMargin {
margin: 0;
}
#workskin .floatleft {
float: left;
color: transparent;
}
#workskin .clearleft {
clear: left;
}
Chapter 4: Tutorial Part 2: Using the Work Skin (HTML)
Chapter Text
Okay, your work skin is ready to go! Now you just need to add it to a work, using some HTML. Go to "Post > New Work" in the AO3 menu and create your new work. Under "Associations," you'll see an option to "Select Work Skin." Choose the work skin you've just created from the drop-down menu there.
After that, you can start adding the elements you want to use from the text boxes below. (Make sure you're in the HTML editor, not Rich Text!) I've used [bold and brackets] to indicate the places for you to insert your own text. You'll also want to replace most of the emojis to match your own puzzle.
If you'd rather skip all these details and simply fill out a blank template, you can skip to Chapter 6, which has a full template for creating a 3x3x3 puzzle.
Overall Content Container
The first thing to do is to set up the main container to hold your entire work (or chapter):
<div class="main">
[All the contents of your work, including your own text and all the other HTML code you use, should go here.]
</div>
(New!) A Note On Editing Placeholder Text
While editing, try not to delete all the placeholder text from between any set of div tags without replacing it with some text of your own. In other words, if the code you're editing has a placeholder like "[Name]" or "[Your text here]," be sure to put a name or some text there, rather than just deleting the bracketed text and leaving the space blank. Otherwise you may see issues with the background not displaying properly, due to AO3 getting confused by the empty div container and misreading the code.
(If you run into difficulties with this, or any other parts of the code/tutorial, just drop me a comment and I'll be glad to help if I can!)
Title Section
Your work title should already be Murdle-styled once you've selected the work skin. (If you don't want the title to be styled this way, you'll need to delete the part of the CSS code that's named "title.")
Apart from the main work title, though, you can also include a title and subtitle at the top of the work, the way they appear on the Murdle website:
The Case of the Mysterious Murdle
Murdle for Aug 8, 2022
In order to get the title and subtitle to show up without a large margin in between, I used the ".noMargin" CSS style here, along with the styles for the title and subtitle:
<p class="noMargin"><span class="case-title">[Your Title Here]</span></p>
<p class="noMargin"><span class="subtitle">[Month and Day, Year]</span></p>
[This is the place for you to introduce and describe your Murdle case. You can use <b></b> to add bold text, and <i></i> for italics.]
If you find that any of your elements are showing up with too little margin between them, and you want to add extra space, you can insert a paragraph break like this:
<p></p><br />
Cards (Back Side)
|
Below is the code to show the back side of three cards with the magnifying glass emoji on them.
If you only need three cards, you probably don't need to edit this section! If you want to show four cards, you'll need to repeat a card below, and also increase the "width" value in the CSS style for the table (see Chapter 2).
<table class="card-smalltable">
<tbody>
<tr>
<td>
<div class="divider"><div class="cardback">
<table><tbody><tr><td><div class="card-small-emoji"><span class="TanColor">🔎</span></div></td></tr></tbody></table>
</div></div>
<div class="divider"><div class="cardback">
<table><tbody><tr><td><div class="card-small-emoji"><span class="TanColor">🔎</span></div></td></tr></tbody></table>
</div></div>
<div class="divider"><div class="cardback">
<table><tbody><tr><td><div class="card-small-emoji"><span class="TanColor">🔎</span></div></td></tr></tbody></table>
</div></div>
</td>
</tr>
</tbody>
</table>
<p class="clearleft"></p>
Cards (Front Side, Small)
|
The next bit of code is for the front sides of the cards. For a 3x3x3 puzzle, you'll want to copy this code three times, so you can show three suspects, three weapons, and three locations. (Make a fourth copy if you're including motives as well.) Then you can edit the emojis and the names/titles. These are the small versions, so they should have fairly short names so as not to overflow their boxes.
<table class="card-smalltable">
<tbody>
<tr>
<td>
<div class="divider"><div class="card-small">
<table><tbody><tr><td>
<div class="card-emoji">
<p class="noMargin"><span class="BlackColor">👶</span></p></div>
<div class="card-small-name">
<p class="noMargin"><span class="BlackColor">[Suspect]</span></p></div>
</td></tr></tbody></table>
</div></div>
<div class="divider"><div class="card-small">
<table><tbody><tr><td>
<div class="card-emoji">
<p class="noMargin"><span class="BlackColor">🐸</span></p></div>
<div class="card-small-name">
<p class="noMargin"><span class="BlackColor">[Weapon]</span></p></div>
</td></tr></tbody></table>
</div></div>
<div class="divider"><div class="card-small">
<table><tbody><tr><td>
<div class="card-emoji">
<p class="noMargin"><span class="BlackColor">🚪</span></p></div>
<div class="card-small-name">
<p class="noMargin"><span class="BlackColor">[Location]</span></p></div>
</td></tr></tbody></table>
</div></div>
</td>
</tr>
</tbody>
</table>
<p class="clearleft"></p>
Changing the Emoji and Text Colors
|
By default, the colors for all the emojis on the cards are set to black, but they're easy to change. Each emoji is contained within span tags that are by default simply labelled "Color." You can change the color of the emoji by changing the name of the span tag to refer to one of the colors defined in the CSS code, such as "CrimsonColor" for Dr. Crimson, or "AzureColor" for Bishop Azure.
For consistency, I named all the colors after the last word in the suspect's name. Here's a list of all the color names that are in the CSS and ready to use:
- AmaranthColor, ApplegreenColor, AubergineColor, AureolinColor, AzureColor, BlackColor, BlueColor, CeladonColor, ChampagneColor, CoffeeColor, CopperColor, CrimsonColor, EmeraldColor, EminenceColor, GlaucousColor, GreyColor, HoneyColor, LapisColor, LavenderColor, MangoColor, MaroonColor, MauveColor, NavyColor, PineColor, RaspberryColor, RoseColor, RuleanColor, SaffronColor, SlateColor, TanColor, TangerineColor, TuscanyColor, VerdigrisColor, VermillionColor, VioletColor, WhiteColor.
To change an emoji to any of these colors, place it within span tags with the correct color name. For example, if you want to color the ♝ emoji with the canonical color for Bishop Azure, the HTML is:
<span class="AzureColor">♝</span>
Likewise, to change the color of the text, use:
<span class="AzureColor">Bishop Azure</span>
(Try to keep the span tags directly surrounding the emoji or text you want to alter, as in the examples above. Like, don't put span tags around an entire table or a div. AO3 will go NOPE and do weird things to your code!)
If you want to add additional colors, you'll need to go into the work skin and edit the CSS. You can create new colors by copying the code for an existing color, giving your color a new name, and changing the hex code to the color you want. Once you've saved the work skin with the new color included in the CSS, you'll be able to use span tags to apply it anywhere in your work.
Cards (Front Side, Mid-Sized)
|
Here's the code for the mid-sized cards. Again, you'll want to make at least three copies of this code (to get three-card sets for your suspects, weapons, and locations) and edit the emojis and the descriptive text for each one. These cards are designed for short descriptions (if the text gets too long, it will overflow the card container).
<table class="cards">
<tbody>
<tr>
<td>
<div class="divider"><div class="card">
<table><tbody><tr><td>
<div class="card-emoji">
<p class="noMargin"><span class="BlackColor">👶</span></p></div>
<div class="card-small-name">
<p class="noMargin"><span class="BlackColor">[Name.]</span></p></div>
<div class="card-text">
<p>[Description here.] </p></div>
<div class="card-stats">
<p class="noMargin">[Stats here.]</p></div>
</td></tr></tbody></table>
</div></div>
<div class="divider"><div class="card">
<table><tbody><tr><td>
<div class="card-emoji">
<p class="noMargin"><span class="BlackColor">🐸</span></p></div>
<div class="card-small-name">
<p class="noMargin"><span class="BlackColor">[Name.]</span></p></div>
<div class="card-text">
<p>[Description here.]</p></div>
<div class="card-stats">
<p class="noMargin">[Stats here.]</p></div>
</td></tr></tbody></table>
</div></div>
<div class="divider"><div class="card">
<table><tbody><tr><td>
<div class="card-emoji">
<p class="noMargin"><span class="BlackColor">🚪</span></p></div>
<div class="card-small-name">
<p class="noMargin"><span class="BlackColor">[Name.]</span></p></div>
<div class="card-text">
<p>[Description here.]</p></div>
<div class="card-stats">
<p class="noMargin">[Stats here.]</p></div>
</td></tr></tbody></table>
</div></div>
</td>
</tr>
</tbody>
</table>
<p class="clearleft"></p>
Cards (Front Side, Full-Sized)
🐸
A TOXIC FROG
This card will expand based on the amount of text you enter, so you can write as much as you want here.
Light-weight • Made of a live animal
This is the larger version of the card, where you can write more about your clues. Copy this code as many times as you need to create all the cards you want to make.
<p><div class="card-large">
<p></p><div class="card-emoji">
<p class="noMargin"><span class="BlackColor">🐸</span></p></div><div class="card-name">
<p class="noMargin"><span class="BlackColor">[Name]</span></p></div><div class="card-large-text">
<p>[Description] </p></div><div class="card-stats">
<p>[Stats • Stats]</p></div></div>
Evidence
• You can write as many clues as you want here.
• The murdle weapon was found under velvet cushions.
• A toxic frog was not in a secret chamber.
• The suspect who brought the toxic frog was a Gemini.
Next up is the evidence box. If you want to use an HTML-generated bulleted list, you can do that with <ul><li></ul>, where <li> comes before each bulleted item. But you can also just use text bullet points like I've done here.
<p><div class="evidence">
<p class="noMargin">
• [You can write as many clues as you want here.]<br />
• [You can write as many clues as you want here.]<br />
• [You can write as many clues as you want here.]<br />
• [You can write as many clues as you want here.]</p></div>
Notebook
NOTEBOOK
You can write notes in here if you want, or you can leave this space blank.
Here's the code for the Notebook:
<p><div class="notebook">
<p></p><div class="notebook-title">
<p>[NOTEBOOK]</p></div>[Your text here.]
If you want to include a logic grid in the notebook, the HTML code for that should go inside here too. You can find the code for the logic grids in Chapter 5.]</p></div>
Hints
|
Although Murdle doesn't have "hint cards" per se, if you want a way to indicate the possibility of a hint, you can use one of the codes below to signify Irratino's offer.
Here's the version with text:
<div class="cardhintback">
<table><tbody><tr><td>
<div class="card-hint-back-emoji2">
<p class="noMargin"><span class="WhiteColor">🔮</span></p></div>
<div class="card-hint-back-text">
<p class="noMargin">[Ask for a hint?]</p></div>
</td></tr></tbody></table>
</div>
No-text version:
<div class="cardhintback">
<table><tbody><tr><td><div class="card-hint-back-emoji"><span class="WhiteColor">🔮</span></div></td></tr></tbody></table>
</div>
🔮
You can add any information here that Inspector Irratino may have gleaned from the collective unconscious.
Maybe in italics, like this.
And here's the large version of the black hint card, where you can put the hint text. Irratino's hints are usually italicized; you can add italics simply by putting the usual <i></i> around any text.
<div class="card-hint-large">
<p></p><div class="card-hint-back-emoji">
<p class="noMargin"><span class="WhiteColor">🔮</span></p></div><div class="card-hint-large-text">
<p>[Write your hint here.] </p></div></div>
Case Resolution
RESOLUTION
If you want to include a "resolution" section, you can do it in red like on the Murdle site by using the same "case-title" element from the top of this page, as shown below, and use red text for the rest of the section:
<p><div class="case-title">
<p>[RESOLUTION]</p></div>
<p><span class="redtext">[This is where you can put your resolution. It will show in a red font.]</span>
Chess Pieces
♔♞♗♞♕♚♘♝♖♝♗♛♘♜
If you want to include the chess pieces, just copy the code from below, no changes necessary. (If you want to change the font size, you'll need to do that in the CSS; just go to the segment labelled "chess" and change the value of "font-size.")
<p><div class="chess">
<p><span class="redtext">♔</span>♞<span class="redtext">♗</span>♞<span class="redtext">♕</span>♚<span class="redtext">♘</span>♝<span class="redtext">♖</span>♝<span class="redtext">♗</span>♛<span class="redtext">♘</span>♜</p></div>
Logic Grids
The code for the logic grids is in Chapter 5! They're easy to use, but the code is somewhat long, so I thought it was better to put it into a separate chapter. Simply choose the grid you want, copy the HTML, and paste it into your work at the place where you want it to appear. (If you're putting the logic grid inside the notebook, make sure to choose one of the options with the notebook-colored background. Otherwise, choose a grid with the regular background color.) The only editing you'll need to do is to change out the emojis for your own.
And That's All!
When you're done, make sure you've still got your closing div at the end:
</div>
If you notice any errors or something doesn't work, please drop me a comment and let me know! I've tried to check everything over, but it's quite possible that I may have missed something. I'll be happy to try to fix anything I can, or explain anything that's confusing!
Chapter 5: Tutorial Part 3: Logic Grid Codes (HTML)
Chapter Text
I've put these into a separate chapter because the code for them is long, but they're fairly simple to use. All you need to do is copy the code for whichever one you want, paste it into your work in the location where you want it, and change out the emojis to match those in your murdle. Below, you can find the code for the following puzzle options:
- 1. Small 3x3x3 puzzle (inside notebook)
2. Medium 3x3x3x3 puzzle (inside notebook)
3. Large 4x4x4x4 puzzle (inside notebook)
4. Large 6x6x6 puzzle (inside notebook)
5. Small 3x3x3 puzzle (outside notebook)
6. Medium 3x3x3x3 puzzle (outside notebook)
7. Large 4x4x4x4 puzzle (outside notebook)
8. Large 6x6x6 puzzle (outside notebook)
Of course, you can also create other variations by adding or deleting rows or columns from the HTML tables. If you do this, take note of the table class, which sets the size of the table. There are three sizes, "grid-small", "grid-med", and "grid-large"; use the large grid table for anything with four or more suspects. Also, when adding or deleting cells, take note of their class labels as well: <td class="grid"> is for cells with a black border around them; <td class="grid-none"> is for empty cells.
The emoji colors in the table can be changed in the same way described in Chapter 4, by putting the color name in the span tags surrounding the emoji. (See the Chapter 4 section titled "Changing the Emoji and Text Colors.") All of the emojis in the templates below have default span tags simply labelled "Color." To change them, add the name of the color you want in front of the word "Color" (so that the tag says e.g. <span class="BlackColor">, <span class="CoffeeColor">, <span class="SlateColor">, etc.). These are case-sensitive, so be sure to capitalize the color names.
(Since the boxes in these grids aren't actually clickable, you may also want to include a link in your work to a puzzle-solver site like this one. To get a direct link to exactly the puzzle size you want on the site linked above, follow the link and adjust the number of grid boxes and the emojis or item names to suit your puzzle, and then copy the URL straight from the address bar, and add that to your work as a link. The code for a link is <a href="PasteYourURLHere">[LinkNameHere]</a>.)
Here's an example of the small 3x3x3 grid inside of the notebook box:
* | 👶 | 👶 | 👶 | 🌳 | 🌳 | 🌳 |
🔪 | ||||||
🔪 | ||||||
🔪 | ||||||
🔪 | ||||||
🌳 | ||||||
🌳 | ||||||
🌳 |
Here's the same grid, but outside the notebook, on the regular Murdle background:
* | 👶 | 👶 | 👶 | 🌳 | 🌳 | 🌳 |
🔪 | ||||||
🔪 | ||||||
🔪 | ||||||
🔪 | ||||||
🌳 | ||||||
🌳 | ||||||
🌳 |
And here are the codes:
Small 3x3x3 Logic Grid (Notebook Color)
Put this grid before the closing </div> of the "notebook."
<table class="grid-small">
<tbody>
<tr>
<td class="corner">*</td>
<td class="emoji"><span class="Color">👶</span></td>
<td class="emoji"><span class="Color">👶</span></td>
<td class="emoji"><span class="Color">👶</span></td>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="emoji"><span class="Color">🚪</span></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🔪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🔪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🔪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
</tbody>
</table>
Medium 3x3x3x3 Logic Grid (Notebook Color)
Put this grid before the closing </div> of the "notebook." (If you want to make a larger grid that includes motives, e.g. with more than 3 suspects, change the table class from "grid-med" to "grid-large".)
<table class="grid-med">
<tbody>
<tr>
<td class="corner">*</td>
<td class="emoji"><span class="Color">👶</span></td>
<td class="emoji"><span class="Color">👶</span></td>
<td class="emoji"><span class="Color">👶</span></td>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="emoji"><span class="Color">💰</span></td>
<td class="emoji"><span class="Color">💰</span></td>
<td class="emoji"><span class="Color">💰</span></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🔪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🔪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🔪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">💰</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">💰</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">💰</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
</tbody>
</table>
Large 4x4x4x4 Logic Grid (Notebook Color)
Put this grid before the closing </div> of the "notebook." (If you're making any other grid with 4 or more suspects, choose this grid size.)
<table class="grid-large">
<tbody>
<tr>
<td class="corner">*</td>
<td class="emoji"><span class="Color">👶</span></td>
<td class="emoji"><span class="Color">👶</span></td>
<td class="emoji"><span class="Color">👶</span></td>
<td class="emoji"><span class="Color">👶</span></td>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="emoji"><span class="Color">💰</span></td>
<td class="emoji"><span class="Color">💰</span></td>
<td class="emoji"><span class="Color">💰</span></td>
<td class="emoji"><span class="Color">💰</span></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🔪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🔪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🔪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🔪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">💰</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">💰</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">💰</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">💰</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
</tbody>
</table>
Large 6x6x6 Logic Grid (Notebook Color)
Put this grid before the closing </div> of the "notebook." (If you're making any other grid with 4 or more suspects, choose this grid size.)
<table class="grid-large">
<tbody>
<tr>
<td class="corner">*</td>
<td class="emoji"><span class="Color">👶</span></td>
<td class="emoji"><span class="Color">👶</span></td>
<td class="emoji"><span class="Color">👶</span></td>
<td class="emoji"><span class="Color">👶</span></td>
<td class="emoji"><span class="Color">👶</span></td>
<td class="emoji"><span class="Color">👶</span></td>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="emoji"><span class="Color">🚪</span></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🔪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🔪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🔪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🔪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🔪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🔪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
</tbody>
</table>
</div>
Small 3x3x3 Logic Grid (Regular Background Color)
Put this grid anywhere in your murdle (except inside the notebook or evidence box).
</p><table class="grid2-small">
<tbody>
<tr>
<td class="corner2">*</td>
<td class="emoji2"><span class="Color">👶</span></td>
<td class="emoji2"><span class="Color">👶</span></td>
<td class="emoji2"><span class="Color">👶</span></td>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="emoji2"><span class="Color">🚪</span></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🔪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🔪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🔪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
</tr>
</tbody>
</table>
Medium 3x3x3x3 Logic Grid (Regular Background Color)
Put this grid anywhere in your murdle (except inside the notebook or evidence box). (If you want to make a larger grid that includes motives, e.g. with more than 3 suspects, change the table class from "grid-med" to "grid-large".)
<table class="grid2-med">
<tbody>
<tr>
<td class="corner2">*</td>
<td class="emoji2"><span class="Color">👶</span></td>
<td class="emoji2"><span class="Color">👶</span></td>
<td class="emoji2"><span class="Color">👶</span></td>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="emoji2"><span class="Color">💰</span></td>
<td class="emoji2"><span class="Color">💰</span></td>
<td class="emoji2"><span class="Color">💰</span></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🔪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🔪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🔪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">💰</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">💰</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">💰</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
</tr>
</tbody>
</table>
Large 4x4x4x4 Logic Grid (Regular Background Color)
Put this grid anywhere in your murdle (except inside the notebook or evidence box). (If you're making any other grid with 4 or more suspects, choose this grid size.)
<table class="grid2-large">
<tbody>
<tr>
<td class="corner2">*</td>
<td class="emoji2"><span class="Color">👶</span></td>
<td class="emoji2"><span class="Color">👶</span></td>
<td class="emoji2"><span class="Color">👶</span></td>
<td class="emoji2"><span class="Color">👶</span></td>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="emoji2"><span class="Color">💰</span></td>
<td class="emoji2"><span class="Color">💰</span></td>
<td class="emoji2"><span class="Color">💰</span></td>
<td class="emoji2"><span class="Color">💰</span></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🔪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🔪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🔪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🔪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">💰</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">💰</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">💰</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">💰</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
<td class="grid2-none"></td>
</tr>
</tbody>
</table>
Large 6x6x6 Logic Grid (Regular Background Color)
Put this grid anywhere in your murdle (except inside the notebook or evidence box). (If you're making any other grid with 4 or more suspects, choose this grid size.)
<table class="grid2-large">
<tbody>
<tr>
<td class="corner2">*</td>
<td class="emoji2"><span class="Color">👶</span></td>
<td class="emoji2"><span class="Color">👶</span></td>
<td class="emoji2"><span class="Color">👶</span></td>
<td class="emoji2"><span class="Color">👶</span></td>
<td class="emoji2"><span class="Color">👶</span></td>
<td class="emoji2"><span class="Color">👶</span></td>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="emoji2"><span class="Color">🚪</span></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🔪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🔪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🔪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🔪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🔪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🔪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
</tr>
<tr>
<td class="emoji2"><span class="Color">🚪</span></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
</tr>
</tbody>
</table>
Chapter 6: Blank HTML Template (for a 3x3x3 puzzle)
Chapter Text
This is a complete HTML template for a Murdle with three suspects, weapons, and locations. It uses the small and large cards (but not the medium-sized ones), the logic grid inside the notebook, and a hint card with text. If you're making a 3x3x3 puzzle, you can simply copy and paste this HTML into your work, and then swap in your own text (and emojis) to all the places in [brackets] below.
Everything in this template can be changed out, adjusted, or moved around as you like! See Chapter 4 for all the details on the different HTML segments and how they work, and Chapter 5 for different logic grid size options.
Note On Editing Placeholder Text
Try not to delete all the placeholder text from between any set of div tags without replacing it with some text of your own. In other words, if the piece of code you're editing has a placeholder like "[Name]" or "[Your text here]," be sure to put a name or some text there, rather than just deleting the bracketed text and leaving the space blank. (Otherwise AO3 may get confused by the empty div containers and misread the code.)
<div class="main">
<p class="noMargin"><span class="case-title">[Your Title Here]</span></p>
<p class="noMargin"><span class="subtitle">[Month and Day, Year]</span></p>
[This is the place for you to introduce and describe your murdle case. You can use <b></b> to add bold text, and <i></i> for italics.]
<p class="noMargin"><span class="case-title">[Cards]</span></p>
[Your text.]
<table class="card-smalltable">
<tbody>
<tr>
<td>
<div class="divider"><div class="cardback">
<table><tbody><tr><td><div class="card-small-emoji"><span class="TanColor">🔎</span></div></td></tr></tbody></table>
</div></div>
<div class="divider"><div class="cardback">
<table><tbody><tr><td><div class="card-small-emoji"><span class="TanColor">🔎</span></div></td></tr></tbody></table>
</div></div>
<div class="divider"><div class="cardback">
<table><tbody><tr><td><div class="card-small-emoji"><span class="TanColor">🔎</span></div></td></tr></tbody></table>
</div></div>
</td>
</tr>
</tbody>
</table>
<p class="clearleft"></p>
<p class="noMargin"><span class="case-title">[Suspects]</span></p>
[Your text.]
<table class="card-smalltable">
<tbody>
<tr>
<td>
<div class="divider"><div class="card-small">
<table><tbody><tr><td>
<div class="card-emoji">
<p class="noMargin"><span class="BlackColor">👶</span></p></div>
<div class="card-small-name">
<p class="noMargin"><span class="BlackColor">[Suspect 1]</span></p></div>
</td></tr></tbody></table>
</div></div>
<div class="divider"><div class="card-small">
<table><tbody><tr><td>
<div class="card-emoji">
<p class="noMargin"><span class="BlackColor">👶</span></p></div>
<div class="card-small-name">
<p class="noMargin"><span class="BlackColor">[Suspect 2]</span></p></div>
</td></tr></tbody></table>
</div></div>
<div class="divider"><div class="card-small">
<table><tbody><tr><td>
<div class="card-emoji">
<p class="noMargin"><span class="BlackColor">👶</span></p></div>
<div class="card-small-name">
<p class="noMargin"><span class="BlackColor">[Suspect 3]</span></p></div>
</td></tr></tbody></table>
</div></div>
</td>
</tr>
</tbody>
</table>
<p class="clearleft"></p>
<p class="noMargin"><span class="case-title">[Inspect the Cards]</span></p>
[Your text.]
<p><div class="card-large">
<p></p><div class="card-emoji">
<p class="noMargin"><span class="BlackColor"> 👶</span></p></div><div class="card-name">
<p class="noMargin"><span class="BlackColor">[Name]</span></p></div><div class="card-large-text">
<p>[Description] </p></div><div class="card-stats">
<p>[Stats • Stats]</p></div></div>
<p><div class="card-large">
<p></p><div class="card-emoji">
<p class="noMargin"><span class="BlackColor"> 👶</span></p></div><div class="card-name">
<p class="noMargin"><span class="BlackColor">[Name]</span></p></div><div class="card-large-text">
<p>[Description] </p></div><div class="card-stats">
<p>[Stats • Stats]</p></div></div>
<p><div class="card-large">
<p></p><div class="card-emoji">
<p class="noMargin"><span class="BlackColor"> 👶</span></p></div><div class="card-name">
<p class="noMargin"><span class="BlackColor">[Name]</span></p></div><div class="card-large-text">
<p>[Description] </p></div><div class="card-stats">
<p>[Stats • Stats]</p></div></div>
<p class="noMargin"><span class="case-title">[Weapons]</span></p>
[Your text.]
<table class="card-smalltable">
<tbody>
<tr>
<td>
<div class="divider"><div class="card-small">
<table><tbody><tr><td>
<div class="card-emoji">
<p class="noMargin"><span class="BlackColor">🐸</span></p></div>
<div class="card-small-name">
<p class="noMargin"><span class="BlackColor">[Weapon 1]</span></p></div>
</td></tr></tbody></table>
</div></div>
<div class="divider"><div class="card-small">
<table><tbody><tr><td>
<div class="card-emoji">
<p class="noMargin"><span class="BlackColor">🐸</span></p></div>
<div class="card-small-name">
<p class="noMargin"><span class="BlackColor">[ Weapon 2]</span></p></div>
</td></tr></tbody></table>
</div></div>
<div class="divider"><div class="card-small">
<table><tbody><tr><td>
<div class="card-emoji">
<p class="noMargin"><span class="BlackColor">🐸</span></p></div>
<div class="card-small-name">
<p class="noMargin"><span class="BlackColor">[ Weapon 3]</span></p></div>
</td></tr></tbody></table>
</div></div>
</td>
</tr>
</tbody>
</table>
<p class="clearleft"></p>
<p class="noMargin"><span class="case-title">[Inspect the Cards]</span></p>
[Your text.]
<p><div class="card-large">
<p></p><div class="card-emoji">
<p class="noMargin"><span class="BlackColor">🔪</span></p></div><div class="card-name">
<p class="noMargin"><span class="BlackColor">[Name]</span></p></div><div class="card-large-text">
<p>[Description] </p></div><div class="card-stats">
<p>[Stats • Stats]</p></div></div>
<p><div class="card-large">
<p></p><div class="card-emoji">
<p class="noMargin"><span class="BlackColor">🔪</span></p></div><div class="card-name">
<p class="noMargin"><span class="BlackColor">[Name]</span></p></div><div class="card-large-text">
<p>[Description] </p></div><div class="card-stats">
<p>[Stats • Stats]</p></div></div>
<p><div class="card-large">
<p></p><div class="card-emoji">
<p class="noMargin"><span class="BlackColor">🔪</span></p></div><div class="card-name">
<p class="noMargin"><span class="BlackColor">[Name]</span></p></div><div class="card-large-text">
<p>[Description] </p></div><div class="card-stats">
<p>[Stats • Stats]</p></div></div>
<p class="noMargin"><span class="case-title">[Locations]</span></p>
[Your text.]
<table class="card-smalltable">
<tbody>
<tr>
<td>
<div class="divider"><div class="card-small">
<table><tbody><tr><td>
<div class="card-emoji">
<p class="noMargin"><span class="BlackColor">🚪</span></p></div>
<div class="card-small-name">
<p class="noMargin"><span class="BlackColor">[Location 1]</span></p></div>
</td></tr></tbody></table>
</div></div>
<div class="divider"><div class="card-small">
<table><tbody><tr><td>
<div class="card-emoji">
<p class="noMargin"><span class="BlackColor">🚪</span></p></div>
<div class="card-small-name">
<p class="noMargin"><span class="BlackColor">[Location 2]</span></p></div>
</td></tr></tbody></table>
</div></div>
<div class="divider"><div class="card-small">
<table><tbody><tr><td>
<div class="card-emoji">
<p class="noMargin"><span class="BlackColor">🚪</span></p></div>
<div class="card-small-name">
<p class="noMargin"><span class="BlackColor">[Location 3]</span></p></div>
</td></tr></tbody></table>
</div></div>
</td>
</tr>
</tbody>
</table>
<p class="clearleft"></p>
<p class="noMargin"><span class="case-title">[Inspect the Cards]</span></p>
[Your text.]
<p><div class="card-large">
<p></p><div class="card-emoji">
<p class="noMargin"><span class="BlackColor">🌳</span></p></div><div class="card-name">
<p class="noMargin"><span class="BlackColor">[Name]</span></p></div><div class="card-large-text">
<p>[Description] </p></div><div class="card-stats">
<p>[Stats • Stats]</p></div></div>
<p><div class="card-large">
<p></p><div class="card-emoji">
<p class="noMargin"><span class="BlackColor">🌳</span></p></div><div class="card-name">
<p class="noMargin"><span class="BlackColor">[Name]</span></p></div><div class="card-large-text">
<p>[Description] </p></div><div class="card-stats">
<p>[Stats • Stats]</p></div></div>
<p><div class="card-large">
<p></p><div class="card-emoji">
<p class="noMargin"><span class="BlackColor">🌳</span></p></div><div class="card-name">
<p class="noMargin"><span class="BlackColor">[Name]</span></p></div><div class="card-large-text">
<p>[Description] </p></div><div class="card-stats">
<p>[Stats • Stats]</p></div></div>
<p class="noMargin"><span class="case-title">[Evidence]</span></p>
[Your text.]
<p><div class="evidence">
<p class="noMargin">
• [Bulleted list of clues.]<br />
• [Bulleted list of clues.]<br />
• [Bulleted list of clues.]<br />
• [Bulleted list of clues.]</p></div>
<p></p>
[Your text.]
<p><div class="notebook">
<p></p><div class="notebook-title">
<p>NOTEBOOK</p></div>[Your text.]
<table class="grid-small">
<tbody>
<tr>
<td class="corner">*</td>
<td class="emoji"><span class="Color">👶</span></td>
<td class="emoji"><span class="Color">👶</span></td>
<td class="emoji"><span class="Color">👶</span></td>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="emoji"><span class="Color">🚪</span></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🔪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🔪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🔪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji"><span class="Color">🚪</span></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
</tbody>
</table>
</p></div>
<p></p><br />
<p class="noMargin"><span class="case-title">[Ask for a Hint?]</span></p>
[Your text.]
<div class="cardhintback">
<table><tbody><tr><td>
<div class="card-hint-back-emoji2">
<p class="noMargin"><span class="WhiteColor">🔮</span></p></div>
<div class="card-hint-back-text">
<p class="noMargin">[Ask for a hint?]</p></div>
</td></tr></tbody></table>
</div>
<p></p>
[Your text.]
<p></p>
<div class="card-hint-large">
<p></p><div class="card-hint-back-emoji">
<p class="noMargin"><span class="WhiteColor">🔮</span></p></div><div class="card-hint-large-text">
<p>[Write your hint here.] </p></div></div>
<p><div class="case-title">
<p>RESOLUTION</p></div>
<p><span class="redtext">[Your case-resolution text.]</span>
<p><div class="chess">
<p><span class="redtext">♔</span>♞<span class="redtext">♗</span>♞<span class="redtext">♕</span>♚<span class="redtext">♘</span>♝<span class="redtext">♖</span>♝<span class="redtext">♗</span>♛<span class="redtext">♘</span>♜</p></div><hr />
</div>
bearden2000 on Chapter 4 Mon 12 Sep 2022 03:15AM UTC
Last Edited Mon 12 Sep 2022 03:21AM UTC
Comment Actions
Grayswandir (gothic_gray) on Chapter 4 Mon 12 Sep 2022 04:07AM UTC
Last Edited Mon 12 Sep 2022 04:24AM UTC
Comment Actions
bearden2000 on Chapter 4 Tue 13 Sep 2022 02:49AM UTC
Last Edited Tue 13 Sep 2022 02:51AM UTC
Comment Actions
Grayswandir (gothic_gray) on Chapter 4 Tue 13 Sep 2022 03:44AM UTC
Comment Actions
Grayswandir (gothic_gray) on Chapter 4 Tue 13 Sep 2022 04:01AM UTC
Comment Actions
bearden2000 on Chapter 4 Mon 17 Oct 2022 11:30PM UTC
Comment Actions
Grayswandir (gothic_gray) on Chapter 4 Thu 20 Oct 2022 04:22AM UTC
Comment Actions
scintilla10 on Chapter 6 Wed 30 Nov 2022 04:40AM UTC
Comment Actions
Grayswandir (gothic_gray) on Chapter 6 Mon 05 Dec 2022 11:53AM UTC
Comment Actions
buries on Chapter 6 Wed 30 Nov 2022 10:41AM UTC
Comment Actions
Grayswandir (gothic_gray) on Chapter 6 Mon 05 Dec 2022 11:57AM UTC
Comment Actions
Aja on Chapter 6 Sun 17 Sep 2023 10:42PM UTC
Comment Actions
Grayswandir (gothic_gray_art) on Chapter 6 Sun 21 Jul 2024 01:49AM UTC
Comment Actions
sikp on Chapter 6 Mon 27 Jan 2025 11:18PM UTC
Comment Actions