layout/css/statbate.css

69 lines
929 B
CSS
Raw Normal View History

2023-06-12 16:45:00 +03:00
body {
font: 15px "Arial";
background-color: #f3f3f5;
}
.statbate {
max-width: 790px;
margin: 0px auto;
padding: 10px;
}
.header {
background-color: #9e9e9e;
height: 49px;
border-radius: 8px;
}
.content {
margin-top: 12px;
background: #fff;
height: 859px;
border-radius: 8px;
}
.footer {
margin-top: 12px;;
}
.footer_banner {
margin-top: 12px;
}
.footer_bottom {
margin-top: 12px;
}
.footer_social {
display: flex;
justify-content: center;
grid-gap:24px;
}
.footer_social a {
color: #6c757d;
font-size: 32px;
text-decoration: none;
}
.footer_social i {
font-size: 32px;
opacity: 0.5;
transition: all 0.3s ease 0s;
}
.banner {
width: 100%;
border-radius: 8px;
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.2);
opacity: 0.5;
}
@media (any-hover: hover) {
.footer_social i:hover,
.banner:hover {
opacity: 1;
}
}