Search
 
SCRIPT & CODE EXAMPLE
 

CSS

linear gradient instagram

background: #f09433; 
background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
Comment

instagram gradient css

<style>
.insta-icon {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 20%;
  background: radial-gradient(circle at 33% 100%, #fed373 4%, #f15245 30%, #d92e7f 62%, #9b36b7 85%, #515ecf)
}
.insta-icon:after,
.insta-icon:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 25px;
  border: 2px solid #fff;
  transform: translate(-50%, -50%);
  content: ''
}
.insta-icon:before {
  border-radius: 20%
}
.insta-icon:after {
  width: 11px;
  height: 11px;
  border-radius: 50%
}
</style>
<div class="insta-icon"></div>
Comment

PREVIOUS NEXT
Code Example
Css :: css wordwrap 
Css :: css ellipsis 
Css :: remove blue border on a input 
Css :: html static background 
Css :: css remove bullet point from ul 
Css :: change the color of an hr 
Css :: disabled cursor pointer 
Css :: center content 
Css :: 2 lines p css 
Css :: @media max-width 
Css :: how to add a text bar blinking animation in css 
Css :: css align items vertical center 
Css :: css image sharpen 
Css :: no border css 
Css :: check if input is empty css 
Css :: Change png to white using CSS 
Css :: position footer to stay at bottom of screen flexbox 
Css :: css focus outline none 
Css :: smooth transition css on hover 
Css :: css box shadow not on bottom 
Css :: css input selector 
Css :: css top right corner 
Css :: set border color of svg 
Css :: center in grid 
Css :: schatten css 
Css :: ratio bootstrap 
Css :: media screen tablet 
Css :: invert png color css 
Css :: ngx-charts change text color 
Css :: elementor is swiping 
ADD CONTENT
Topic
Content
Source link
Name
5+8 =