Template:IntroButton/styles.css: Difference between revisions
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
.intro-button { | |||
display: inline-block; | |||
background: rgba(10, 10, 10, 0.75); | background: rgba(10,10,10,0.75); | ||
border: 1px solid rgba(120, 165, 255, 0.2); | border: 1px solid rgba(120,165,255,0.2); | ||
border-radius: 12px; | border-radius: 12px; | ||
padding: | padding: 14px 28px; | ||
text-align: center; | |||
transition: all .25s ease; | transition: all .25s ease; | ||
} | } | ||
.intro-button a { | |||
.intro- | |||
color: #FAB243; | color: #FAB243; | ||
font-weight: 600; | |||
font-size: 18px; | font-size: 18px; | ||
letter-spacing: 0.5px; | letter-spacing: 0.5px; | ||
text-transform: uppercase; | text-transform: uppercase; | ||
text-decoration: none; | |||
} | } | ||
.intro- | .intro-button:hover { | ||
color: | border-color: #78A5FF; | ||
background: #1c1e25; | |||
transform: translateY(-3px); | |||
} | } | ||
.intro- | .intro-button a:hover { | ||
text-decoration: underline; | text-decoration: underline; | ||
} | } | ||
Revision as of 21:35, 5 November 2025
.intro-button {
display: inline-block;
background: rgba(10,10,10,0.75);
border: 1px solid rgba(120,165,255,0.2);
border-radius: 12px;
padding: 14px 28px;
text-align: center;
transition: all .25s ease;
}
.intro-button a {
color: #FAB243;
font-weight: 600;
font-size: 18px;
letter-spacing: 0.5px;
text-transform: uppercase;
text-decoration: none;
}
.intro-button:hover {
border-color: #78A5FF;
background: #1c1e25;
transform: translateY(-3px);
}
.intro-button a:hover {
text-decoration: underline;
}