پیشنمایش زنده
کد HTML
<a class="brutalist-button openai" href="/">
<div class="openai-logo">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
class="openai-icon"
>
<path
fill="#10A37F"
d="M22.2819 9.8211a5.9847 5.9847 0 0 0-.5157-4.9108 6.0462 6.0462 0 0 0-6.5098-2.9A6.0651 6.0651 0 0 0 4.9807 4.1818a5.9847 5.9847 0 0 0-3.9977 2.9 6.0462 6.0462 0 0 0 .7427 7.0966 5.98 5.98 0 0 0 .511 4.9107 6.051 6.051 0 0 0 6.5146 2.9001A5.9847 5.9847 0 0 0 13.2599 24a6.0557 6.0557 0 0 0 5.7718-4.2058 5.9894 5.9894 0 0 0 3.9977-2.9001 6.0557 6.0557 0 0 0-.7475-7.0729zm-9.022 12.6081a4.4755 4.4755 0 0 1-2.8764-1.0408l.1419-.0804 4.7783-2.7582a.7948.7948 0 0 0 .3927-.6813v-6.7369l2.02 1.1686a.071.071 0 0 1 .038.052v5.5826a4.504 4.504 0 0 1-4.4945 4.4944zm-9.6607-4.1254a4.4708 4.4708 0 0 1-.5346-3.0137l.142.0852 4.783 2.7582a.7712.7712 0 0 0 .7806 0l5.8428-3.3685v2.3324a.0804.0804 0 0 1-.0332.0615L9.74 19.9502a4.4992 4.4992 0 0 1-6.1408-1.6464zM2.3408 7.8956a4.485 4.485 0 0 1 2.3655-1.9728V11.6a.7664.7664 0 0 0 .3879.6765l5.8144 3.3543-2.0201 1.1685a.0757.0757 0 0 1-.071 0l-4.8303-2.7865A4.504 4.504 0 0 1 2.3408 7.8956zm16.0993 3.8558L12.5907 8.3829 14.6108 7.2144a.0757.0757 0 0 1 .071 0l4.8303 2.7913a4.4944 4.4944 0 0 1-.6765 8.1042v-5.6772a.79.79 0 0 0-.3927-.6813zm2.0107-3.0231l-.142-.0852-4.7735-2.7818a.7759.7759 0 0 0-.7854 0L9.409 9.2297V6.8974a.0662.0662 0 0 1 .0284-.0615l4.8303-2.7866a4.4992 4.4992 0 0 1 6.6802 4.66zM8.3065 12.863l-2.02-1.1638a.0804.0804 0 0 1-.038-.0567V6.0742a4.4992 4.4992 0 0 1 7.3757-3.4537l-.142.0805L8.704 5.459a.7948.7948 0 0 0-.3927.6813zm1.0976-2.3654l2.602-1.4998 2.6069 1.4998v2.9994l-2.5974 1.4997-2.6067-1.4997Z"
></path>
</svg>
<span class="openai-text">OpenAI</span>
</div>
<div class="button-text">
<span>Powered by</span>
<span>GPT</span>
</div>
</a>
کد CSS
.button-text span:first-child {
font-size: 9px;
font-weight: 400; /* Regular weight for "Powered by" */
text-transform: uppercase;
letter-spacing: 1px;
}
.button-text span:last-child {
font-size: 16px;
font-weight: 700; /* Bold for "GPT" */
text-transform: uppercase;
letter-spacing: 0.5px;
}
.brutalist-button.openai {
font-family: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont,
"Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
sans-serif;
display: flex;
align-items: center;
width: 240px; /* Increased width slightly */
height: 70px;
background-color: #1a1a1a;
color: #ffffff;
text-decoration: none;
font-weight: bold;
border: 3px solid #ffffff;
outline: 3px solid #1a1a1a;
box-shadow: 8px 8px 0 #10a37f;
transition: all 0.2s ease-out;
padding: 0 12px;
box-sizing: border-box;
position: relative;
overflow: hidden;
}
.brutalist-button.openai::before {
content: "";
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: conic-gradient(from 0deg at 50% 50%, #10a37f, #7ce9d6, #10a37f);
opacity: 0;
transition: opacity 0.3s ease-out;
z-index: 1;
animation: rotate 4s linear infinite;
}
@keyframes rotate {
100% {
transform: rotate(360deg);
}
}
.brutalist-button.openai:hover::before {
opacity: 0.15;
}
.brutalist-button.openai:hover {
transform: translate(-4px, -4px);
box-shadow: 12px 12px 0 #10a37f;
}
.brutalist-button.openai:active {
transform: translate(4px, 4px);
box-shadow: 0px 0px 0 #10a37f;
background-color: #ffffff;
color: #1a1a1a;
border-color: #1a1a1a;
}
.openai-logo {
display: flex;
align-items: center;
margin-right: 12px;
position: relative;
z-index: 2;
}
.openai-icon {
width: 30px;
height: 30px;
margin-right: 8px;
transition: transform 0.2s ease-out;
}
.brutalist-button.openai:hover .openai-icon {
transform: rotate(-15deg) scale(1.1);
}
.brutalist-button.openai:active .openai-icon {
transform: rotate(15deg) scale(0.9);
}
.openai-text {
font-family: "Helvetica Neue", sans-serif;
font-size: 24px;
font-weight: bold;
letter-spacing: 0.5px;
text-shadow: 2px 2px 0 #1a1a1a;
}
.openai-logo {
display: flex;
align-items: center;
margin-right: 16px; /* Increased margin */
position: relative;
z-index: 2;
}
.openai-icon {
width: 28px; /* Slightly reduced size */
height: 28px;
margin-right: 8px;
transition: transform 0.2s ease-out;
}
.openai-text {
font-family: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont,
"Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
sans-serif;
font-size: 22px;
font-weight: 700; /* Bold */
letter-spacing: -0.5px; /* Slightly tighter letter spacing */
text-shadow: 2px 2px 0 #1a1a1a;
}
.button-text {
display: flex;
flex-direction: column;
line-height: 1.1; /* Reduced line height */
position: relative;
z-index: 2;
}
.button-text span:first-child {
font-size: 9px; /* Reduced size */
text-transform: uppercase;
letter-spacing: 0.5px;
}
.button-text span:last-child {
font-size: 16px; /* Reduced size */
text-transform: uppercase;
letter-spacing: 0.5px;
}