Creative Button Designs
botão diversos bootstrap
Código
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Creative Button Designs</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<!-- Bootstrap Icons CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css" rel="stylesheet">
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f0f4fa;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
padding: 0;
margin: 0;
}
.button-container {
display: flex;
flex-direction: column;
gap: 20px;
}
.btn-custom {
display: inline-block;
padding: 10px 20px;
border-radius: 8px;
border: 2px solid transparent;
font-size: 1.2rem;
transition: all 0.3s ease;
width: 200px;
text-align: center;
}
/* Custom Buttons */
.btn-delete {
background-color: #e0e7ff;
color: #007bff;
}
.btn-like {
background: linear-gradient(45deg, #1e90ff, #00bfff);
color: white;
}
.btn-star {
background: linear-gradient(45deg, #ff00ff, #ff69b4);
color: white;
}
.btn-edit {
background-color: #ff6347;
color: white;
}
.btn-menu {
background-color: #1e90ff;
color: white;
width: 100px;
}
.btn-more {
background-color: #e0e7ff;
color: #007bff;
width: 100px;
}
.btn-hover {
background-color: transparent;
border-color: #00ced1;
color: #00ced1;
padding: 10px 20px;
}
.btn-download {
background-color: #f0f4fa;
color: #000;
border: 1px solid #000;
}
.btn-outline-delete {
background-color: transparent;
border: 2px dashed #007bff;
color: #007bff;
}
.btn-outline-add {
background-color: transparent;
border: 2px dashed #ff0000;
color: #ff0000;
}
</style>
</head>
<body>
<div class="button-container">
<a href="https://enepta.com" class="btn-custom btn-delete">
<i class="bi bi-trash"></i>
</a>
<a href="https://enepta.com" class="btn-custom btn-like">
<i class="bi bi-heart"></i>
</a>
<a href="https://enepta.com" class="btn-custom btn-star">
<i class="bi bi-star"></i>
</a>
<a href="https://enepta.com" class="btn-custom btn-edit">
<i class="bi bi-pencil"></i>
</a>
<div>
<a href="https://enepta.com" class="btn-custom btn-menu">
<i class="bi bi-list"></i>
</a>
<a href="https://enepta.com" class="btn-custom btn-more">
<i class="bi bi-three-dots"></i>
</a>
</div>
<div>
<a href="https://enepta.com" class="btn-custom btn-hover">
<i class="bi bi-pencil"></i>
</a>
<a href="https://enepta.com" class="btn-custom btn-download">
<i class="bi bi-download"></i>
</a>
</div>
<div>
<a href="https://enepta.com" class="btn-custom btn-outline-delete">
<i class="bi bi-trash"></i>
</a>
<a href="https://enepta.com" class="btn-custom btn-outline-add">
<i class="bi bi-plus"></i>
</a>
</div>
</div>
<!-- Bootstrap JS and Popper.js -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>