I want to configure the display CSS above only. But after header is also shown.
How do I fix it?
I config CSS
.fa-heart:before {
content: "\f0e7";
}
button.like:hover {
color: #FCF94E !important;
background: #222222 !important;
}
button.has-like {
color: #FCF94E !important;
}
html,body {
font-family: avenir, 'segoe ui', sans-serif;
}
@keyframes move {
0% {
background-position: 0 60%, 0 50%;
}
100% {
background-position: 0 60%, 100% 50%;
}
}
.container {
background-color: #263645;
background-image: url('http://bootscootin2pdx.com/network.svg'), radial-gradient(200px 500px at center, #ff8300 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0));
background-size: 125%, 50% 100%;
background-position: 0 60%, 0 100%;
animation: move 5s linear infinite;
height: 150px;
border: 2px solid #263645;
border-right: 0;
border-left: 0;
}
and head
<div class="container">
</div>