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

75 lines
1.1 KiB

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=Source+Sans+Pro&display=swap');
  4. :root {
  5. --default-font: 'Source Sans Pro', sans-serif;
  6. --input-padding: 0.5rem;
  7. }
  8. html {
  9. font-size: 18px;
  10. }
  11. body {
  12. font-family: var(--default-font);
  13. margin: 0px;
  14. padding: 10px;
  15. }
  16. input, textarea, select {
  17. border: 1px solid;
  18. box-sizing: border-box;
  19. font-family: var(--default-font);
  20. font-size: 1rem;
  21. margin: 0px;
  22. padding: var(--input-padding);
  23. width: 100%;
  24. }
  25. button {
  26. border: none;
  27. border-radius: 8px;
  28. cursor: pointer;
  29. font-size: 0.8rem;
  30. font-weight: 700;
  31. padding: 0.5rem 1rem;
  32. min-width: 100px;
  33. }
  34. nav.level {
  35. display: flex;
  36. justify-content: space-between;
  37. }
  38. div.control-container {
  39. display: flex;
  40. padding: 0.5rem 0px;
  41. }
  42. div.control-container > div.icon {
  43. margin: 0px;
  44. padding: var(--input-padding);
  45. }
  46. div.control {
  47. flex-grow: 1;
  48. }
  49. div.gifs {
  50. display: flex;
  51. flex-wrap: wrap;
  52. }
  53. div.gif {
  54. border: 2px solid;
  55. margin: 5px;
  56. }
  57. div.gif > img {
  58. height: 100px;
  59. }
  60. .gif.selected {
  61. border: 3px solid;
  62. }