Moving Gradient Background

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

yOOO, How'd U make This? I got adobe, n I want to recreate sum like thiss

toxcelli
Автор

.socialicons{
display:flex;
justify-content:center;
}
.socialicons a{
text-decoration:none;
padding:10px;
background-color:#111;
margin:20px;
border-radius:50%;
}
.socialicons a i{
font-size: 2em;
color: white;
opacity:0.9
}
.socialicons a:hover{
background-color: white;
transition:0.5s;
}
.socialicons a:hover i{
color:black;
transition:0.5s;
}
.footernav{
margin: 30px 0;
}

sabihabegum
Автор

.footernav ul{
display:flex;
justify-content:center;
list-style:none;
}
.footernav ul li a{
color:white;
margin:20px;
text-decoration:none;
font-size: 1.3em;
opacity: 0.7;
transition:0.5s;
}
.footernav ul li a:hover{
opacity:1;
}
.footerbuttom{
background-color:black;
padding:20px;
text-align:center;
}
.footerbuttom p{
color:white;
}
</style>
</head>

sabihabegum