You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
968 B
CSS

@charset "utf-8";
:root {
font-size: 1vw;
--c-d-1: #000;
--c-l-1: #FFF;
}
body,html {
padding: 0;
margin: 0;
border: 0;
height: 100vh;
width: 100vw;
background-color: var(--c-d-1);
color: var(--c-l-1);
overflow: hidden;
}
.p-root {
width: 100vw;
height: 100vw;
position: relative;
}
.p-root>*{
border: none;
width: 100%;
height: 100%;
position:absolute;
top:0;
left: 0;
}
.p-root>div{
line-height: 100vw;
text-align: center;
color: rgba(255,255,255,.3);
text-shadow: 0 0 1vw rgba(0,0,0,.5);
font-size: 15vw;
font-weight: 900;
}
.p-root>div>div {
float: left;
width: 50vw;
}
.p-imgs {
width: 100vw;
height: calc(50vh - 50vw);
display: flex;
overflow: visible;
position: relative;
}
.p-imgs>img {
width: calc(50vh - 52vw);
height: calc(50vh - 52vw);
margin: 1vw;
background-color: var(--c-l-1);
display: block;
}