Price
How do I make an price?
What is a price? How do you make a price? This script and codes were developed by James Zedd on 11 October 2022, Tuesday.
Price - Script Codes HTML Codes
<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Price</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div class="tableSS table-fixed"> <div class="table-headSS"> <div class="columnSS budget" data-label="Products">Budget</div> <div class="columnSS" data-label="Description">Description</div> </div> <!-- ROW 01 --> <div class="rowSS"> <div class="columnSS rowHeader links budget" data-label="Price Range:"> <a href="#">$150 - $175</a> </div> <div class="columnSS budget-description"> <p>The newest and most popular makes and models, and in Pro Stock! </p> </div> </div> <!-- ROW 02 --> <div class="rowSS"> <div class="columnSS rowHeader links budget even" data-label="Price Range:"> <a href="#">$100 - $150</a> </div> <div class="columnSS budget-description even"> <p>Top of the line Pro Stock sticks. Strait from the teams!</p> </div> </div> <!-- ROW 03 --> <div class="rowSS"> <div class="columnSS rowHeader links budget" data-label="Price Range:"> <a href="#">$50 - $100</a> </div> <div class="columnSS budget-description"> <p>Top end Pro Stocks that we got a good deal on! Latest models of refurbished sticks.</p> </div> </div> <!-- ROW 04 --> <div class="rowSS"> <div class="columnSS rowHeader links budget even" data-label="Price Range:"> <a href="#">Under $50</a> </div> <div class="columnSS budget-description even"> <p>Clearance priced items. Help us rotate inventory and get a ridiculous deal (while quantities last)</p> </div> </div>
</div><!-- table -->
</body>
</html>
Price - Script Codes CSS Codes
body { background: #fff; padding: 30px 100px 100px 100px; font-family: 'Roboto', sans-serif;
}
.tableSS { display:table; font-size:16px; color:#222222; margin:10px 0; width: 100%;
}
.table-fixed { table-layout: fixed;
}
.table-headSS { display: table-header-group;
}
.table-headSS .columnSS { /* Column inside the table-head */ background:#222222; color:#ffffff; border-right:1px solid #fff; border-bottom: 0;
}
.rowSS .columnSS { font-size: 14px;
}
.table-headSS .column:hover{ /* Column hover inside the table-head */ background:#222222;
}
.rowSS { display:table-row; /* Defines a table row */
}
.columnSS{ display:table-cell; /* Defines a table cell */ padding:10px 20px; border-right:1px solid #fff; background:#EFF0F1; text-align: center; min-width: 100px !important;
}
.even { background: #E0E0E0 !important;
}
.budget { width: 35%;
}
.budget-description { vertical-align: middle;
}
.budget-description p { display: inline;
}
/* -- Column Specific CSS -- */
.links a { text-decoration: none; display: block; padding: 6px 12px; background-color: #af1f31; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; font-size: 14px; color: #ffffff; text-align: left; width: 145px; margin-bottom: 10px; transition: all 300ms ease-in-out;
}
.links a:hover { background-color: #c02b3e;
}
.links:before { content: ""attr(data-label)""; display: block; text-align: left; font-family: "Lato", sans-serif; font-size: 18px; font-weight: 700; color: #222222; text-transform: uppercase; margin-bottom: 12px;
}
.brand p { font-style: italic;
}
.brand p span { font-weight: 700; font-style: normal;
}
.specs ul { list-style: none; padding: 0; margin: 0;
}
.specs ul li { margin-bottom: 12px;
}
.tabs { display: none;
}
.pics { position: relative;
}
.view-img { position: absolute; top: 20px; left: 50%; margin-right: -50%; transform: translate(-50%,0%); display: block; text-decoration: none; color: #b9b9b9; background: #ffffff; border: 4px solid #b9b9b9; -webkit-border-radius: 12px; -moz-border-radius: 12px; border-radius: 12px; font-family: 'Raleway', sans-serif; font-size: 17px; font-weight: 700; padding: 14px 5px 10px;
}
.view-img:before { content: ""; display: block; font-family: FontAwesome; font-size: 48px; color: #b9b9b9; margin-bottom: 10px;
}
/*
==============
Responsive
==============
*/
@media (max-width: 991px) { .table-headSS { display: none; } .tableSS, .rowSS, .columnSS { display: block; } .rowSS { margin-bottom: 20px; } .columnSS { margin-right: 0; padding: 1px; } .links:before { background-color: #222222; color: #ffffff; width: 100%; padding: 20px 0; text-indent: 20px; } .links a { display: inline-block; padding: 6px 12px; -webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px; width: 44%; margin-bottom: 5px; text-align: center; } .pics { clear: both; } .view-img { position: initial; margin-right: 0; transform: none; padding: 10px 0; background: #af1f31; border: 0; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; font-weight: 400; color: #ffffff; transition: all 300ms ease-in-out; } .view-img:hover { background-color: #c02b3e; } .view-img:before { display: inline; font-size: 18px; margin-bottom: 0; margin-right: 6px; color: #ffffff; } /* -- tabbed content CSS -- */ .description, .brand, .specs { display: none; } .tabs { display: inherit; background-color:inherit; } .tabs ul { list-style: none; margin: 0; padding: 0; text-align: center; display: table; width: 100%; table-layout: fixed; background-color: inherit; } .tabs ul li { display: table-cell; float: none; background-color: #b8c9cf; -webkit-border-top-left-radius: 6px; -webkit-border-top-right-radius: 6px; -moz-border-radius-topleft: 6px; -moz-border-radius-topright: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; font-weight: 700; padding: 8px 0; } .active-tab { background-color: #989898 !important; } .active-column { background: #989898 !important; } .specs ul li { background-color: transparent; display: block; font-weight: 400; } .specs ul { margin: 14px 0; } .budget { width: initial; } .budget-description p { display: block; }
}

Developer | James Zedd |
Username | james_zedd |
Uploaded | October 11, 2022 |
Rating | 3 |
Size | 3,043 Kb |
Views | 12,138 |
Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!
Name | Size |
Responsive Advert | 2,354 Kb |
HTML for IID | 1,792 Kb |
CSS Menu Item Transition and Image Animation | 2,184 Kb |
A Pen by James Zedd | 2,674 Kb |
Pure CSS Slide Out Menu | 2,907 Kb |
Flex Chart | 4,111 Kb |
Pure CSS Pop Up Modal | 2,858 Kb |
Modern Responsive Product Comparison Table for E-commerce | 2,538 Kb |
Flex | 2,796 Kb |
Simple Opt In Form | 3,203 Kb |
Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!
Name | Username | Size |
Svg animation draw | SzymonDziewonski | 5,545 Kb |
Particle Motion trajectories | Sniejadlik | 5,899 Kb |
FreeCodeCamp - Simon Game | Ivhed | 8,481 Kb |
Loading animation - freedom purchase | Rocbear | 2,567 Kb |
Simple animated hover effect | Pobee-norris | 3,044 Kb |
Sticky menu on scroll | Senff | 2,869 Kb |
JavaScript constructors | Simboonlong | 2,415 Kb |
NeeilTimer | Neeilan | 2,836 Kb |
Rainbow Drops | Csbarnes | 2,365 Kb |
Drag in vanilla js using dotval math instead of translate | Paulq | 2,662 Kb |
Surf anonymously, prevent hackers from acquiring your IP address, send anonymous email, and encrypt your Internet connection. High speed, ultra secure, and easy to use. Instant setup. Hide Your IP Now!