wbcmc/css/style.scss

28 lines
344 B
SCSS
Raw Normal View History

$stripwidth: 512px;
2019-07-26 18:05:19 +00:00
tr {
display:flex;
flex-direction: row;
justify-content: space-between;
}
td{
2019-07-26 18:05:19 +00:00
img{
width:32px;
transition: all 0.2s;
&:hover{
width: 64px;
}
}
}
#comic {
margin: 0 auto;
}
.strip {
width:$stripwidth;
&:hover{
width: $stripwidth;
}
2019-07-26 18:05:19 +00:00
}