<div class="box">
<div class="box-inner">
<div class="box-main">
<div class="elements-holder">
<div class="elements">
<div class="elem-1"></div>
<div class="elem-2">Привет, Мир!</div>
</div>
<code>transform: skew(<span data-digit-id="skew">0deg</span>);</code>
</div>
</div>
<div class="controller">
<div class="controller-item">
<div class="indicator">
<label for="skew">Rotation:</label>
<span class="digit" data-digit-id="skew">0deg</span>
</div>
<div class="slider">
<input type="range" id="skew" min="-45" max="45" step="1" value="0" oninput="showVal(this.value, 'skew')" onchange="showVal(this.value, 'skew')">
</div>
</div>
</div>
</div>
</div>
@import url('https://fonts.googleapis.com/css2?family=League+Spartan&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@500&display=swap');
:root {
--font-family-mono: 'League Mono', monospace;
--font-family-dm: 'DM Sans', sans-serif;
--skew: 0deg;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.box {
background: #151f28;
max-width: 750px;
margin: 20px auto;
border-radius: 8px;
padding: 16px 32px;
font-size: 16px;
}
.box-inner {
display: flex;
flex-direction: column;
gap: 16px;
}
.box-main {
padding: 50px 32px 32px;
background: white;
border-radius: 4px;
min-height: 200px;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.elements-holder {
min-width: 475px;
display: flex;
flex-direction: column;
align-items: center;
gap: 50px;
}
.elements {
position: relative;
width: 80px;
height: 80px;
color: #fff;
font-family: var(--font-family-dm);
}
.elem-1 {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
border: 4px dashed #9295a0;
}
.elem-2 {
position: relative;
width: 100%;
height: 100%;
background: #4433ff;
opacity: 0.8;
transform: skew(var(--skew));
display: flex;
align-items: center;
}
code {
font-size: 1rem;
font-family: var(--font-family-mono);
background: #e1e3ea;
padding: 6px 8px;
border-radius: 4px;
}
.controller {
display: grid;
gap: 32px;
grid-template-columns: 1fr 1fr;
color: white;
font-family: var(--font-family-dm);
font-weight: 500;
}
.indicator {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 4px;
}
.digit {
font-size: 0.875em;
}
.slider {
display: flex;
flex-direction: column;
justify-content: center;
min-height: 1.625rem;
}
.slider input {
background: transparent;
appearance: none;
}
.slider input::-webkit-slider-runnable-track {
height: 4px;
background-color: #5c6670;
}
.slider input::-webkit-slider-thumb {
appearance: none;
height: 16px;
width: 16px;
border-radius: 50px;
background: #d9e0e8;
cursor: grab;
transform: translateY(-6px);
}
function showVal(val, id){
let _deg = `${val}deg`
$(`[data-digit-id=${id}]`).text(_deg);
$(':root').css(`--${id}`, _deg);
};
This Pen doesn't use any external CSS resources.