Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | None | 0 0
  1. <Defaults>
  2. <Button fontSize="32" rotation="0 0 180" height="60" color="#671616" textColor="#FFFFFF"/>
  3. <InputField caretWidth="1.2" fontSize="25" color="#00000022" textColor="#671616" selectionColor="#931f1faa" onValueChanged="InputFieldtextPolyfill"/>
  4. <Dropdown fontSize="32" itemHeight="60" height="60" color="#671616" textColor="#FFFFFF" itemBackgroundColors="#671616"/>
  5. </Defaults>
  6.  
  7. <HorizontalLayout childForceExpandWidth="false" position="300 -255 -60" width="950" height="70" rotation="0 0 180">
  8. <Panel minWidth="10" color="#671616"/>
  9. <VerticalLayout childForceExpandHeight="false" flexibleWidth="1">
  10. <Panel minHeight="10" color="#671616"/>
  11. <InputField id="deckURL" placeholder="PASTE URL HERE" flexibleHeight="1" lineType="SingleLine" onEndEdit="FetchDeck"/>
  12. <Panel minHeight="10" color="#671616"/>
  13. </VerticalLayout>
  14. <Panel minWidth="10" color="#671616"/>
  15. </HorizontalLayout>
  16. <HorizontalLayout childForceExpandWidth="false" position="-510 -290 -60" width="520" height="965" rotation="0 0 180">
  17. <Panel minWidth="10" color="#671616"/>
  18. <VerticalLayout childForceExpandHeight="false" flexibleWidth="1">
  19. <Panel minHeight="10" color="#671616"/>
  20. <InputField id="deckInput" placeholder="DECK LIST" flexibleHeight="1" lineType="MultiLineNewLine"/>
  21. <Panel minHeight="10" color="#671616"/>
  22. </VerticalLayout>
  23. <Panel minWidth="10" color="#671616"/>
  24. </HorizontalLayout>
  25. <HorizontalLayout position="0 -725 -60" width="260" height="60" rotation="0 0 180">
  26. <VerticalLayout flexibleWidth="1">
  27. <Dropdown id="card_back_color" onValueChanged="InputFieldtextPolyfill">
  28. <Option>default</Option>
  29. <Option>Blue</Option>
  30. <Option>Green</Option>
  31. <Option>Purple</Option>
  32. <Option>Orange</Option>
  33. <Option>Red</Option>
  34. <Option>White</Option>
  35. <Option>Yellow</Option>
  36. </Dropdown>
  37. </VerticalLayout>
  38. </HorizontalLayout>
  39. <HorizontalLayout position="0 -610 -60" width="260" height="60" rotation="0 0 180">
  40. <VerticalLayout flexibleWidth="1">
  41. <Dropdown id="language" onValueChanged="InputFieldtextPolyfill">
  42. <Option>en</Option>
  43. <Option>es</Option>
  44. <Option>de</Option>
  45. <Option>fr</Option>
  46. <Option>it</Option>
  47. <Option>pt</Option>
  48. <Option>pl</Option>
  49. <Option>zh</Option>
  50. </Dropdown>
  51. </VerticalLayout>
  52. </HorizontalLayout>
  53.  
  54. <Button position="0 -150 -60" width="320" onClick="BuildFromInput">BUILD DECK</Button>
  55. <Button position="0 100 -60" width="320" onClick="selectRandomDeck">RANDOM DECK</Button>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement