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

72 lines
1.1 KiB

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