You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
347 B
23 lines
347 B
.container{
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100vh;
|
|
overflow: auto;
|
|
}
|
|
.container .section{
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
}
|
|
h1{
|
|
text-align: center;
|
|
}
|
|
.container .section:nth-child(1){
|
|
background-color: burlywood;
|
|
|
|
}
|
|
|
|
.container .section:nth-child(2){
|
|
background-color: black;
|
|
}
|
|
|