ode_to_snack/src/app/airstrip_one/0/page.css.ts

53 lines
1.1 KiB
TypeScript
Raw Normal View History

2024-07-05 16:06:02 +00:00
import { keyframes, style } from "@vanilla-extract/css";
export const center_vertical = style({
position: 'relative',
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
margin: 'auto',
2024-07-05 16:06:03 +00:00
width: '100%',
border: '0.3em solid purple',
'@media': {
'screen and (min-width: 768px)': {
width: '50%',
}
}
2024-09-26 21:35:11 +00:00
});
2024-07-05 16:06:02 +00:00
export const big_brother_style = style({
2024-07-05 16:06:03 +00:00
width: '60%',
2024-07-05 16:06:02 +00:00
height: 'auto',
2024-07-05 16:06:03 +00:00
border: '0.3em solid purple',
'@media': {
'screen and (min-width: 768px)': {
width: '40%',
}
}
2024-09-26 21:35:11 +00:00
});
2024-07-05 16:06:02 +00:00
export const cats_div = style({
display: 'flex',
flexDirection: 'row',
justifyContent: 'space-between',
width: '100%',
borderTop: '0.3em solid purple'
2024-09-26 21:35:11 +00:00
});
2024-07-05 16:06:02 +00:00
export const subcats_div = style({
display: 'flex',
justifyContent: 'flex-start',
width: '50%',
height: 'max-content',
2024-09-26 21:35:11 +00:00
});
2024-07-05 16:06:02 +00:00
export const reverse_subcats_div = style([subcats_div, {
transform: 'scale(-1, 1)'
2024-09-26 21:35:11 +00:00
}]);
2024-07-05 16:06:02 +00:00
export const cat = style({
display: 'block',
width: '25%',
height: 'auto',
2024-09-26 21:35:11 +00:00
});