Instagram new logo css background

前端 未结 4 2119
失恋的感觉
失恋的感觉 2020-12-24 02:28

Recently, Instagram logo has changed as you all know. I need vector logo but it is not possible, I mean gradients. Is there any css code for new logo?

4条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-24 03:26

    Here's the code for the icon with the gradient background. Hope this helps. :)

    #insta {
      background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
      -webkit-background-clip: text;
              /* Also define standard property for compatibility */
              background-clip: text;
      -webkit-text-fill-color: transparent;
      
      font-size: 200px; /* change this to change the size*/
      
    }
    
    

    I found 2 more great implementations of the font awesome icon here- https://codepen.io/monir/pen/wGZWvB (new logo) https://codepen.io/thomasrye/pen/VaRoYv (old logo)

提交回复
热议问题