blob: 64f7a54328f73a5ef40b2e0b0766034b3c73e461 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
.button-container > a.button {
display: flex;
background-color: var(--button);
border-color: var(--button-border);
border-width: 1px;
box-shadow: none;
color: var(--button-text);
cursor: pointer;
margin: 1rem 0;
padding: 0.6rem;
text-align: center;
white-space: nowrap;
justify-content: center;
}
.button-container > a.button:hover {
background-color: var(--button-hover);
}
@media (min-width: 768px) {
.button-container > a.button {
display: inline-block;
}
}
|