β¦ Verified product
White River Rock 3/4"
USD 199.00
Tierra Supply Co
Verified independent store
β
3/4β river rock is a smooth, round stone, varying in color primarily white with hints of tan throughout. This landscape rock gravel is perfect for anyone looking to add natural ear
thy tones to their landscaping projects. /* --- 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