petar_bonov

3D phone color swatches

Jul 7th, 2020
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.60 KB | None | 0 0
  1. #binkies-container, #binkies-container-waiting-on-click
  2. {
  3.     display: none;
  4.     width: 100%;
  5.     position: relative;
  6. }
  7. #binkies-content {
  8.     height: 550px;
  9.     max-width: 100%;
  10.     margin: 0 auto 0;
  11. }
  12.  
  13. #binkies-color-switcher {
  14.     display: flex;
  15.     justify-content: center;
  16. }
  17. .binkies-color-swatch {
  18.     font-family: Google-Oswald;
  19.     font-size: 1em;
  20.     color: #616161;
  21.     cursor: pointer;
  22.     display: inline-flex;
  23.     align-items: center;
  24.     height: 2em;
  25.     padding: .5em .5em .5em 4px;
  26.     background-color: white;
  27. }
  28. .binkies-color-swatch:before {
  29.     display: inline-block;
  30.     content: "";
  31.     width: 3px;
  32.     height: calc(2em - 8px);
  33.     margin-right: 4px;
  34. }
  35. .binkies-color-swatch.selected {
  36.     background-color: #eee;
  37. }
  38. .binkies-color-swatch.selected:before {
  39.     background-color: #6d6d6d;
  40. }
Add Comment
Please, Sign In to add comment