No edit summary |
No edit summary |
||
Line 4: | Line 4: | ||
padding: 8px 16px; | padding: 8px 16px; | ||
border-radius: 8px; | border-radius: 8px; | ||
background-color: #121212; | |||
border: 1px solid #444; | |||
color: #fff; | |||
text-decoration: none; | text-decoration: none; | ||
font-size: 14px; | font-size: 14px; | ||
Line 15: | Line 15: | ||
.button-with-circle:hover { | .button-with-circle:hover { | ||
background: #1e1e1e; | background: #1e1e1e; | ||
color: #fff; | |||
} | } | ||
Revision as of 07:44, 13 December 2024
.button-with-circle { display: inline-flex; align-items: center; padding: 8px 16px; border-radius: 8px; background-color: #121212; border: 1px solid #444; color: #fff; text-decoration: none; font-size: 14px; cursor: pointer; transition: background-color 0.3s, color 0.3s; } .button-with-circle:hover { background: #1e1e1e; color: #fff; } .circle-image img { width: 32px; height: 32px; background-size: cover; background-position: center; border-radius: 50%; margin-right: 8px; }