2025-04-23 08:42:19 +02:00
|
|
|
:root {
|
|
|
|
|
--main-color: green;
|
2025-04-22 16:21:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
2025-04-23 08:42:19 +02:00
|
|
|
background-color: var(--main-color);
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.full-screen-container {
|
|
|
|
|
width: 100vw;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.left-panel {
|
|
|
|
|
width: 33%;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
background-color: var(--main-color);
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
position: absolute;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.left-panel-pic {
|
|
|
|
|
margin: 0;
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
position: absolute;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.right-panel {
|
|
|
|
|
width: 67%;
|
|
|
|
|
background-color: antiquewhite;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
position: relative;
|
|
|
|
|
left: 33%;
|
|
|
|
|
top: 0;
|
|
|
|
|
}
|