mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
Added button AMP styles
This commit is contained in:
parent
80d5f89382
commit
7892bc9dfe
1 changed files with 31 additions and 0 deletions
|
@ -530,6 +530,37 @@
|
|||
color: #222;
|
||||
}
|
||||
|
||||
.kg-button-card {
|
||||
display: flex;
|
||||
position: static;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.kg-btn {
|
||||
display: flex;
|
||||
position: static;
|
||||
align-items: center;
|
||||
padding: 0 2.0rem;
|
||||
height: 4.0rem;
|
||||
line-height: 4.0rem;
|
||||
font-size: 1.65rem;
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
border-radius: 5px;
|
||||
transition: opacity 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
.kg-btn:hover {
|
||||
opacity: 0.85;
|
||||
}
|
||||
|
||||
.kg-btn-accent {
|
||||
background-color: var(--ghost-accent-color, #1292EE);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.kg-width-full.kg-card-hascaption {
|
||||
display: grid;
|
||||
grid-template-columns: inherit;
|
||||
|
|
Loading…
Add table
Reference in a new issue