Skip to content

Commit

Permalink
example.html - Button components
Browse files Browse the repository at this point in the history
  • Loading branch information
staFF6773 authored Nov 25, 2024
1 parent effa6b2 commit 8f59391
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions Components/buttons/example.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Diews-Components - Example</title>
<link rel="stylesheet" href="./css/buttons.main.css">
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f9f9f9;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
color: #333;
}
.container {
text-align: center;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}
</style>
</head>
<body>
<div class="container">
<button class="btn btn--primary">Primary Button</button>
<button class="btn btn--secondary">Secondary Button</button>
<button class="btn btn--accent">Accent button</button>
<button class="btn btn--mint">Mint Button</button>
<button class="btn btn--peach">Peach Button</button>
<button class="btn btn--lavender">Lavender Button</button>
<button class="btn btn--gray">Gray Button</button>
<button class="btn btn--sky">Light Blue Button</button>
<button class="btn btn--cream">Cream Button</button>
<button class="btn btn--aqua">Aqua Button</button>
<button class="btn btn--outline">Outline button</button>
<button class="btn btn--gradient">Gradient button</button>
<button class="btn btn--shadow">Shadow Button</button>
<button class="btn btn--square">Square Button</button>
<button class="btn btn--yellow">Yellow Button</button>
<button class="btn btn--bounce">Bounce Button</button>

<button class="btn btn--primary btn--secondary-border">Button with secondary border</button>
<button class="btn btn--mint btn--primary-border">Mint button with primary border</button>
<button class="btn btn--aqua btn--gradient-border">Aqua button with gradient border</button>
</div>
</body>
</html>

0 comments on commit 8f59391

Please sign in to comment.