β¦ Verified product
Limestone #57 (3/4β)
USD 90.00
Tierra Supply Co
Verified independent store
β
#57 Limestone Gravel Stone is a crushed angular Limerock aggregate. Sizes of #57 Stone range from 1/2" to 1" with an average size of 3/4" Limestone has a wide range of applications
. Driveways, pathways, garden beds, french drains, and more! /* --- Calculator Styling --- */ .material-calculator-embed { font-family: Arial, sans-serif; max-width: 350px; padding: 20px; border: 1px solid #e0e0e0; border-radius: 8px; background-color: #f9f9f9; margin: 20px 0; } .material-calculator-embed h4 { color: #333; margin-top: 0; margin-bottom: 15px; font-size: 1.2em; border-bottom: 2px solid #0056b3; /* Tierra Blue Accent */ padding-bottom: 5px; } .input-group { margin-bottom: 15px; } .input-group label { display: block; margin-bottom: 5px; font-weight: bold; color: #555; } .input-group input[type="number"] { width: calc(100% - 20px); padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } .calc-button { background-color: #0056b3; /* Primary Button Color */ color: white; padding: 10px 15px; border: none; border-radius: 4px; cursor: pointer; font-size: 1em; width: 100%; transition: background-color 0.3s; } .calc-button:hover { background-color: #003d7a; } #calculator-result { margin-top: 20px; padding: 15px; border-radius: 4px; background-color: #d4edda; border: 1px solid #c3e6cb; color: #155724; font-weight: bold; text-align: center; display: none; /* Hidden until calculated */ } Calculate Your Material Needs π Enter the dimensions of your project area. Length (Feet) Width (Feet) Depth (Inches) Calculate Volume function calculateMaterials() { // 1. Get user input values const length = parseFloat(document.getElementById('length-ft').value); const width = parseFloat(document.getElementById('width-ft').value); const depthInches = parseFloat(document.getElementById('depth-in').value); const resultDiv = document.getElementById('calculator-result'); // 2. Input Validation if (isNaN(length) || isNaN(width) || isNaN(depthInches) || length