blob: 57cb4ff6b5e457672849b63e1a846923a0e750a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
.btn {
display: inline-block;
padding: 12px 16px 10px;
font-size: 1rem;
line-height: 1.25;
background-color: var(--white);
border-radius: var(--border-radius);
text-decoration: none;
font-weight: bold;
color: var(--primary);
text-align: center;
box-shadow: inset 0 0 0 2px var(--primary);
}
|