diff --git a/youtube/balance.html b/youtube/balance.html index 9bc718e..eaa05b0 100644 --- a/youtube/balance.html +++ b/youtube/balance.html @@ -101,13 +101,32 @@ #coin { width: 22%; } + + #send { + background-color: rgb(255, 60, 60); /* Light red color */ + border: none; /* Remove default border */ + color: white; /* Text color */ + padding: 0px; /* Padding inside the button (equal padding for height and width) */ + text-align: center; /* Center the text */ + text-decoration: none; /* Remove underline */ + display: inline-block; /* Display as inline block */ + font-size: 25px; /* Font size */ + margin: 4px; /* Margin around the button */ + cursor: pointer; /* Cursor shows a pointer on hover */ + border-radius: 50%; /* Fully rounded corners for circle */ + width: 75px; /* Fixed width */ + height: 75px; /* Fixed height */ + box-sizing: border-box; /* Include padding and border in element's total width and height */ + } + +
Logo - +