yellowcab/static/css/home.css
2021-11-12 19:25:06 -05:00

33 lines
470 B
CSS

.ex {
border:0;
border-radius:5px;
width:500px;
height:185px;
background:#b0b0b0;
margin-top:10px;
margin-bottom:15px;
box-shadow:5px 5px 20px black;
}
@media (max-width:600px) {
.ex {
width:100% !important;
}
}
.myo {
background:black;
color:white;
border:0;
border-radius:4px;
padding:10px;
cursor:pointer;
transition:border-radius 0.5s, background 0.5s;
}
.myo:focus,
.myo:hover {
background:#282828;
border-radius:8px;
}