From fcfc01e80887f07da78486ad99550192fea90928 Mon Sep 17 00:00:00 2001 From: radzhiv <radzhivkrishna@gmail.com> Date: Mon, 24 Oct 2022 18:12:13 +0530 Subject: [PATCH] resolved the conflicts --- buttons/buttons.css | 18 ++++++++++++++++++ index.html | 10 ++++++++++ 2 files changed, 28 insertions(+) diff --git a/buttons/buttons.css b/buttons/buttons.css index 7d6757d..250732d 100644 --- a/buttons/buttons.css +++ b/buttons/buttons.css @@ -2528,3 +2528,21 @@ a:focus-visible { content: attr(data-front); transform: translateY(0) rotateX(0); } + /* radzhiv's btn 2 start */ + .radzhiv-btn-2 { + padding: 10px; + font-size: 20px; + border-radius: 5px; + color: white; + background-color: #5f6f94; +} +.radzhiv-btn-2:hover{ + background-color: transparent; + font-weight: 700; + color: #2e86c1; + border-width: 4px; + border-style: solid; + border-image: linear-gradient(to right, darkblue, darkorchid) 1; + cursor: pointer; +} + /* radzhiv's btn 2 end */ diff --git a/index.html b/index.html index f474625..d1fcd18 100644 --- a/index.html +++ b/index.html @@ -653,6 +653,16 @@ </div> <!--0b51d14n217's btn--> + <!-- radzhiv-btn-2 --> + <div class="button-container"> + <button class="radzhiv-btn-2">Hover me</button> + <div class="createdby-section"> + Created by + <a href="https://github.com/radzhiv25">radzhiv25</a> + </div> + </div> + <!-- radzhiv's btn--> + </div>