[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.

79 lines
1.3 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. @charset "utf-8";
  2. @import "normalize.css";
  3. @import url('https://fonts.googleapis.com/css?family=Quicksand:300,400,500,600,700&display=swap');
  4. :root {
  5. --default-font: 'Quicksand', sans-serif;
  6. --input-padding: 0.5rem;
  7. }
  8. html {
  9. font-family: var(--default-font);
  10. font-size: 16px;
  11. font-weight: 300;
  12. }
  13. body {
  14. font-family: var(--default-font);
  15. margin: 0px;
  16. padding: 10px;
  17. }
  18. input, textarea, select {
  19. border: 1px solid;
  20. border-radius: 0;
  21. box-sizing: border-box;
  22. font-family: var(--default-font);
  23. font-size: 0.9rem;
  24. margin: 0px;
  25. padding: var(--input-padding);
  26. width: 100%;
  27. }
  28. button {
  29. border: none;
  30. border-radius: 25px;
  31. cursor: pointer;
  32. font-family: var(--default-font);
  33. font-size: 0.8rem;
  34. font-weight: 700;
  35. padding: 0.5rem 1rem;
  36. min-width: 100px;
  37. }
  38. nav.level {
  39. display: flex;
  40. justify-content: space-between;
  41. }
  42. div.control-container {
  43. display: flex;
  44. padding: 0.5rem 0px;
  45. }
  46. div.control-container > div.icon {
  47. margin: 0px;
  48. padding: var(--input-padding);
  49. }
  50. div.control {
  51. flex-grow: 1;
  52. }
  53. div.gifs {
  54. display: flex;
  55. flex-wrap: wrap;
  56. }
  57. div.gif {
  58. border: 2px solid;
  59. margin: 5px;
  60. }
  61. div.gif > img {
  62. height: 100px;
  63. }
  64. .gif.selected {
  65. border: 3px solid;
  66. }