forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
17 lines
446 B
CSS
17 lines
446 B
CSS
.foo
|
|
{
|
|
margin-right:calc( -0.375em - 1px);
|
|
width: calc(100% / 3 - 2*1em - 2 * 1px + 10 mod 2);
|
|
margin: calc(1rem - 2px) CALC(1rem + 1px);
|
|
}
|
|
.bar
|
|
{
|
|
margin: calc(5 * calc( 10px + 2em ) ) calc(10 + ( 5px + 10px - (10em - 3em)) );
|
|
padding-top: calc( 5 * (2em + -1px));
|
|
}
|
|
input { width: CALC(100% - (1em*1.5)); }
|
|
p {
|
|
font-size: -webkit-calc(20px + 1vw);
|
|
font-size: -moz-calc(20px + 1vw);
|
|
font-size: calc(20px + 1vw);
|
|
} |