JSFiddle - React, Tailwind, and code Playground

by st3fan

HTML

<div class="cash">
    <span class="print">
        Spara 1234 kr
    </span>
</div>

CSS

.cash {
    margin: 100px;
    width: 400px;
    height: 200px;
    background: #cea;
    border: 2px solid green;
    
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);

    filter: progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476); /* IE6,IE7 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)"; /* IE8 */
}
.cash .print {
    color: green;
    font-size: 3em;
    line-height: 4em;
    font-weight: bold;
    display: block;
    text-align: center;
}