Guest User

Untitled

a guest
Jun 14th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. ^contentpage {
  2. background-color: lightgray;
  3. }
  4.  
  5. stacklayout {
  6. padding: 0 10;
  7. }
  8.  
  9. stacklayout>label {
  10. color: gray;
  11. text-align: right;
  12. font-size: 20;
  13. }
  14.  
  15. #result {
  16. /* reset basic form styles */
  17. color: black;
  18. text-align: right;
  19. font-size: 50;
  20. }
  21.  
  22. .calculatorButtons {
  23. /* small spacing within our container */
  24. padding: 10;
  25. height: 500;
  26. }
  27.  
  28. button {
  29. background-color: darkgray; /* light background with opacity 50% */
  30. font-size: 20; /* large font */
  31. border-color: black;
  32. border-width: 1;
  33. }
  34.  
  35. /* go blue */
  36. button.isClear {
  37. background-color: cornflowerblue;
  38. }
  39.  
  40. button.isResult {
  41. background-color: lightseagreen;
  42. color: white;
  43. }
Add Comment
Please, Sign In to add comment