Tabbar animation - Only CSS

PHOTO EMBED

Mon Oct 18 2021 07:43:33 GMT+0000 (Coordinated Universal Time)

Saved by @chrgautier #undefined

.tabs {

  --background: #FFFFFF;

  --text-color: #;
4
  --color-01: #FFB400;
5
  --color-02: #FF50;
6
  --color-03: #901F8;

  --width: 300px;    
8
  --height: 75px;
9
  --border-radius: var(--height);     
10
  background: var(--background);

  width: var(--width);

  height: var(--height);

  padding: 0;
14
  position: relative;

  border-radius: var(--border-radius);

  box-shadow: 0 10px 30px rgba(#414856, 0.05);

  display: flex;

  justify-content: space-around;

  align-items: center;

  padding: 0 15px;

  box-sizing: border-box;

  label {

    width: 25px;

    height: 25px;
content_copyCOPY

https://codepen.io/milanraring/pen/BayRaVb