78 lines
1.2 KiB
CSS
78 lines
1.2 KiB
CSS
body{
|
|
background-color: #e8dc17;
|
|
}
|
|
|
|
.main_box{
|
|
background-color: whitesmoke;
|
|
border-radius: 20px;
|
|
box-shadow: 1px 11px 19px 6px rgba(0,0,0,0.52);
|
|
margin-left: 5rem;
|
|
margin-right: 5rem;
|
|
padding: 2rem;
|
|
position: relative;
|
|
}
|
|
|
|
.label{
|
|
text-align: center;
|
|
margin-top: 5rem;
|
|
margin-bottom: 4rem;
|
|
font-size: xx-large;
|
|
}
|
|
|
|
.label h1 span {
|
|
text-align: center;
|
|
background-color: whitesmoke;
|
|
padding: 1rem;
|
|
border-radius: 20px;
|
|
box-shadow: 1px 11px 19px 6px rgba(0,0,0,0.52);
|
|
}
|
|
|
|
.circle{
|
|
background-color: blue;
|
|
border-radius: 50%;
|
|
height: 300px;
|
|
width: 300px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
position: relative;
|
|
}
|
|
|
|
.frame{
|
|
display: grid;
|
|
grid-template-rows: 1fr;
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
|
|
.left_div{
|
|
padding: 2rem;
|
|
padding-right: 1rem;
|
|
}
|
|
|
|
.right_div{
|
|
padding: 2rem;
|
|
padding-left: 1rem;
|
|
}
|
|
|
|
.option_label{
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.plus_next_btn{
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
|
|
.option_slecter{
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.selector_width{
|
|
width: 200px;
|
|
}
|
|
|
|
@media screen and (max-width: 500px){
|
|
.main_box{
|
|
margin-left: 1rem;
|
|
margin-right: 1rem;
|
|
}
|
|
} |