Langos_projekt/assets/css/rendeles.css

45 lines
806 B
CSS
Raw Normal View History

2023-02-14 13:33:59 +00:00
body{
background-color: #e8dc17;
}
.main_box{
background-color: whitesmoke;
border-radius: 20px;
box-shadow: 1px 11px 19px 6px rgba(0,0,0,0.52);
2023-02-21 13:41:49 +00:00
margin-left: 5rem;
margin-right: 5rem;
2023-02-14 13:33:59 +00:00
padding: 2rem;
2023-02-21 13:41:49 +00:00
position: relative;
}
.label{
text-align: center;
margin-top: 5rem;
margin-bottom: 4rem;
}
.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: 400px;
width: 400px;
margin-left: auto;
margin-right: auto;
position: relative;
;
}
@media screen and (max-width: 500px){
.main_box{
margin-left: 1rem;
margin-right: 1rem;
}
2023-02-14 13:33:59 +00:00
}