[ABANDONDED] Set of "apps" for the Flexor social network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.1 KiB

5 years ago
5 years ago
  1. @charset "utf-8";
  2. @import url('https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700&display=swap');
  3. // Colors
  4. $orange: hsl(14, 100%, 53%);
  5. $yellow: hsl(48, 100%, 67%);
  6. $green: hsl(141, 65%, 31%);
  7. $turquoise: hsl(171, 100%, 41%);
  8. $cyan: hsl(204, 86%, 53%);
  9. $blue: hsl(217, 72%, 30%);
  10. $purple: hsl(271, 63%, 32%);
  11. $red: hsl(348, 71%, 42%);
  12. $grey: hsl(0, 0%, 48%);
  13. $grey-light: hsl(0, 0%, 71%);
  14. $grey-lighter: hsl(0, 0%, 86%);
  15. $white-ter: hsl(0, 0%, 96%);
  16. $white-bis: hsl(0, 0%, 98%);
  17. $family-sans-serif: "Open Sans", sans-serif;
  18. $primary: $blue;
  19. $body-size: 14px;
  20. @import "../../node_modules/bulma/sass/utilities/_all.sass";
  21. @import "../../node_modules/bulma/sass/base/_all.sass";
  22. @import "../../node_modules/bulma/sass/form/_all.sass";
  23. @import "../../node_modules/bulma/sass/elements/button.sass";
  24. @import "../../node_modules/bulma/sass/elements/icon.sass";
  25. @import "../../node_modules/bulma/sass/components/level.sass";
  26. body {
  27. padding: 10px;
  28. }
  29. div.gifs {
  30. display: flex;
  31. flex-wrap: wrap;
  32. }
  33. div.gif {
  34. margin: 5px;
  35. img {
  36. height: 100px;
  37. }
  38. }
  39. .gif.selected {
  40. border: solid 3px $green;
  41. }