Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. .container{
  2. padding: 16px;
  3. display: flex;
  4. flex-direction: column;
  5. height: 100%;
  6. }
  7. .content{
  8. flex-grow: 1;
  9. overflow-y: auto;
  10. }
  11. .actions{
  12. text-align: right;
  13. margin-top: 16px;
  14. }
  15. .select-menu, .select-menu__button{
  16. width: auto;
  17. min-width: 150px;
  18. }
  19. .field{
  20. display: flex;
  21. }
  22. .output{
  23. margin: 8px;
  24. background: #f5f5f5;
  25. font-family: Consolas, monospace;
  26. font-size: 12px;
  27. padding: 8px;
  28. }
  29.  
  30.  
  31. <div class="container">
  32. <div class="content">
  33.  
  34. <h2 class="section-title">Export local colors</h2>
  35. <div class="field">
  36. <label class="label" for="export-type">Export as </label>
  37. <select class="select-menu" id="export-type">
  38. <option value="export-sass">SASS variables</option>
  39. <option value="export-js">JS variables</option>
  40. <option value="export-css-var">CSS variables</option>
  41. </select>
  42. </div>
  43. <pre id="output" class="output"></pre>
  44. </div>
  45. <div class="actions">
  46. <button class="button button--secondary" id="cancel">Cancel</button>
  47. <button class="button button--primary" id="export">Export</button>
  48. </div>
  49. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement