Botão Styles Collection
botão diversos, focado no design
Código
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Button Styles Collection</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 {
background-color: #f0f4fa;
font-family: Arial, sans-serif;
padding: 20px;
}
.button-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 20px;
align-items: center;
}
.btn-custom {
border-radius: 50px;
padding: 10px 20px;
font-size: 1rem;
display: inline-flex;
align-items: center;
justify-content: center;
}
.btn-rounded {
background-color: #007bff;
color: white;
}
.btn-outline {
border: 2px solid #007bff;
background-color: transparent;
color: #007bff;
}
.btn-dark {
background-color: #000;
color: white;
}
.btn-reflex {
background: linear-gradient(45deg, #1e90ff, #00bfff);
color: white;
}
.btn-raised {
background-color: #f39c12;
color: white;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn-smooth {
background-color: #ff69b4;
color: white;
}
.btn-gradient {
background: linear-gradient(45deg, #ff00ff, #ff69b4);
color: white;
}
.btn-dashed {
border: 2px dashed #007bff;
background-color: transparent;
color: #007bff;
}
.btn-icon {
background-color: #6c757d;
color: white;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 10px 20px;
}
.btn-icon i {
margin-right: 8px;
}
.btn-arrow {
color: #007bff;
background-color: transparent;
}
.btn-caption {
background-color: #e0e7ff;
color: #007bff;
}
.btn-accent {
background-color: #ff6347;
color: white;
}
.btn-profile {
background-color: #f39c12;
color: white;
}
.btn-next {
background-color: #e0e7ff;
color: #007bff;
}
.btn-skip {
background-color: transparent;
border: 1px solid #ff0000;
color: #ff0000;
}
</style>
</head>
<body>
<h2 class="text-center mb-4">Explore Our Button Styles</h2>
<div class="button-container">
<a href="https://enepta.com" class="btn-custom btn-rounded">Circular Button</a>
<a href="https://enepta.com" class="btn-custom btn-outline">Outlined</a>
<a href="https://enepta.com" class="btn-custom btn-dark">I'm Dark</a>
<a href="https://enepta.com" class="btn-custom btn-reflex">Gradient Reflex</a>
<a href="https://enepta.com" class="btn-custom btn-raised">Raised Button</a>
<a href="https://enepta.com" class="btn-custom btn-smooth">Smooth Button</a>
<a href="https://enepta.com" class="btn-custom btn-gradient">Vibrant Gradient</a>
<a href="https://enepta.com" class="btn-custom btn-dashed">Dashed Border</a>
<a href="https://enepta.com" class="btn-custom btn-icon">
<i class="bi bi-person"></i> User Profile
</a>
<a href="https://enepta.com" class="btn-custom btn-icon">
<i class="bi bi-heart"></i> Favorites
</a>
<a href="https://enepta.com" class="btn-custom btn-icon">
<i class="bi bi-music-note"></i> Music
</a>
<a href="https://enepta.com" class="btn-custom btn-icon">
<i class="bi bi-gear"></i> Settings
</a>
<a href="https://enepta.com" class="btn-custom btn-arrow">
<i class="bi bi-arrow-left"></i> Back
</a>
<a href="https://enepta.com" class="btn-custom btn-arrow">
<i class="bi bi-arrow-right"></i> Next
</a>
<a href="https://enepta.com" class="btn-custom btn-caption">Caption</a>
<a href="https://enepta.com" class="btn-custom btn-accent">Accent Color</a>
<a href="https://enepta.com" class="btn-custom btn-profile">User Action</a>
<a href="https://enepta.com" class="btn-custom btn-next">Move Forward</a>
<a href="https://enepta.com" class="btn-custom btn-skip">Skip Action</a>
</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>