Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- body {
- font-family: Arial, sans-serif;
- background-color: white;
- margin: 0;
- padding: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100vh;
- }
- .container {
- background-color: #f2a2a2;
- padding: 20px;
- width: 700px;
- }
- .fruit-list {
- list-style: none;
- padding: 0;
- margin: 10px;
- }
- .fruit-list li {
- background-color: #e06666;
- margin: 10px 0;
- padding: 10px 15px;
- position: relative;
- overflow: hidden;
- }
- .fruit-list li span {
- display: right;
- background-color: #a50000;
- color: white;
- padding: 10px;
- }
- .fruit-list li::before {
- content: attr(value);
- background-color: #d9d2e9;
- color: #a61c00;
- font-weight: bold;
- font-size: 14px;
- position: absolute;
- top: 50%;
- left: 10px;
- padding: 0 20px;
- }
- .number{
- color: white;
- padding: 10px;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement