12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- .btn {
- display: inline-block;
- padding: 10px 20px;
- margin: 5px 10px;
- font-size: 16px;
- font-weight: bold;
- text-align: center;
- text-decoration: none;
- border-radius: 5px;
- border: none;
- color: #fff;
- cursor: pointer;
- transition: background-color 0.3s ease-in-out;
- }
- .btn::after {
- content: '';
- position: absolute;
- left: 0;
- bottom: 0px;
- width: 0;
- height: 0px;
- background-color: #ffffff;
- }
- .btn:hover {
- color: white;
- }
- .btn:active {
- color: white;
- }
-
-
- .btn-green {
- background-color: #28a745;
- }
-
- .btn-green:hover {
- background-color: #218838;
- }
-
-
- .btn-blue {
- background-color: #007bff;
- }
-
- .btn-blue:hover {
- background-color: #0069d9;
- }
-
-
- .btn-red {
- background-color: #dc3545;
- }
-
- .btn-red:hover {
- background-color: #c82333;
- }
-
-
- .btn-gray {
- background-color: #8f8f8f;
- }
-
- .btn-gray:hover {
- background-color: #494949;
- }
-
|