raw-settings.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*******************************************************************************
  2. ηMatrix - a browser extension to black/white list requests.
  3. Copyright (C) 2019-2022 Alessio Vanni
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see {http://www.gnu.org/licenses/}.
  14. Home: https://gitlab.com/vannilla/ematrix
  15. uMatrix Home: https://github.com/gorhill/uMatrix
  16. */
  17. body {
  18. display: flex;
  19. flex-direction: column;
  20. height: 100vh;
  21. justify-content: space-between;
  22. }
  23. p {
  24. margin: 0.5em 0;
  25. }
  26. textarea {
  27. box-sizing: border-box;
  28. flex-grow: 1;
  29. resize: none;
  30. text-align: left;
  31. white-space: pre;
  32. width: 100%;
  33. word-wrap: normal;
  34. }