forked from oyd/ozgurkon-2020-site
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
899 B
57 lines
899 B
6 years ago
|
|
||
|
.tickets ul {
|
||
|
list-style: none;
|
||
6 years ago
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
width: 100%;
|
||
|
|
||
|
li {
|
||
|
flex-basis: 15rem;
|
||
|
}
|
||
6 years ago
|
|
||
|
li .ticket {
|
||
6 years ago
|
margin: var(--space-4);
|
||
6 years ago
|
padding: 2rem var(--space-3);
|
||
|
border: thin solid var(--darken-1);
|
||
|
box-shadow: var(--space-1) var(--space-1) var(--space-2) var(--darken-2);
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
text-decoration: none;
|
||
|
color: inherit;
|
||
|
|
||
|
&[aria-disabled] {
|
||
|
opacity: .5;
|
||
|
filter: grayscale(1);
|
||
|
cursor: not-allowed;
|
||
|
}
|
||
|
|
||
|
|
||
|
.ticket-name {
|
||
|
font-size: 1rem;
|
||
|
}
|
||
|
|
||
|
.ticket-price {
|
||
|
font-size: 3.5rem;
|
||
|
color: var(--primary);
|
||
|
font-weight: 200;
|
||
|
}
|
||
|
|
||
|
.ticket-date, .ticket-info {
|
||
|
font-size: .75rem;
|
||
|
color: var(--darken-3);
|
||
|
}
|
||
|
|
||
|
.btn {
|
||
6 years ago
|
margin: var(--space-4);
|
||
6 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|