28 lines
543 B
SCSS
28 lines
543 B
SCSS
.center-list {
|
|
list-style-type: none;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
padding: 0;
|
|
|
|
li {
|
|
margin: 0.5rem 1rem;
|
|
display: inline-block;
|
|
}
|
|
}
|
|
.buy p {
|
|
text-align: center;
|
|
text-indent: 0;
|
|
margin-top: 0.5rem;
|
|
a {
|
|
display: inline-block;
|
|
font-size: 14pt;
|
|
padding: 0.5rem;
|
|
background-color: #eee;
|
|
color: #222;
|
|
border: 1px solid transparent;
|
|
border-radius: 2px;
|
|
box-shadow: 1px 1px 4px #222;
|
|
text-decoration: none;
|
|
}
|
|
}
|