ode_to_snack/src/app/airstrip_one/0/page.css.ts
Gnarwhal 16d9381fdc
All checks were successful
/ deploy (push) Successful in 2m22s
Updated dependencies
2024-09-26 21:47:02 +00:00

52 lines
1.1 KiB
TypeScript

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