Advertisement
Guest User

Untitled

a guest
Jun 30th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.03 KB | None | 0 0
  1. .large_button {
  2. line-height: 10vh !important;
  3. width: 50%;
  4. }
  5.  
  6. .start-button {
  7. line-height: 5vh !important;
  8. width: 15%;
  9. }
  10.  
  11. .button {
  12. background-color: #004A7F;
  13. -webkit-border-radius: 10px;
  14. border-radius: 10px;
  15. border: none;
  16. color: #FFFFFF;
  17. cursor: pointer;
  18. display: inline-block;
  19. font-family: Arial;
  20. font-size: 20px;
  21. padding: 5px 10px;
  22. text-align: center;
  23. text-decoration: none;
  24. }
  25. @-webkit-keyframes glowing1 {
  26. 0% { background-color: #B20000; -webkit-box-shadow: 0 0 3px #B20000; }
  27. 50% { background-color: #FF0000; -webkit-box-shadow: 0 0 40px #FF0000; }
  28. 100% { background-color: #B20000; -webkit-box-shadow: 0 0 3px #B20000; }
  29. }
  30.  
  31. @-webkit-keyframes glowing2 {
  32. 0% { background-color: #228B22; -webkit-box-shadow: 0 0 3px #228B22; }
  33. 50% { background-color: #7CFC00; -webkit-box-shadow: 0 0 40px #7CFC00; }
  34. 100% { background-color: #228B22; -webkit-box-shadow: 0 0 3px #228B22; }
  35. }
  36.  
  37. @-webkit-keyframes glowing3 {
  38. 0% { background-color: #CCCC00; -webkit-box-shadow: 0 0 3px #CCCC00; }
  39. 50% { background-color: #FFFF00; -webkit-box-shadow: 0 0 40px #FFFF00; }
  40. 100% { background-color: #CCCC00; -webkit-box-shadow: 0 0 3px #CCCC00; }
  41. }
  42.  
  43. @-webkit-keyframes glowing4 {
  44. 0% { background-color: #0000FF; -webkit-box-shadow: 0 0 3px #0000FF; }
  45. 50% { background-color: #1E90FF; -webkit-box-shadow: 0 0 40px #1E90FF; }
  46. 100% { background-color: #0000FF; -webkit-box-shadow: 0 0 3px #0000FF; }
  47. }
  48.  
  49. #button1 {
  50. -webkit-animation: glowing1 1000ms infinite;
  51. }
  52.  
  53. #button2 {
  54. color: #000000;
  55. -webkit-animation: glowing2 1000ms infinite;
  56.  
  57. }
  58.  
  59. #button3 {
  60. color: #B8860B;
  61. -webkit-animation: glowing3 1000ms infinite;
  62.  
  63. }
  64.  
  65. #button4 {
  66. -webkit-animation: glowing4 1000ms infinite;
  67.  
  68. }
  69.  
  70. <ion-view view-title="Dashboard">
  71. <ion-content class="padding">
  72.  
  73.  
  74. <div padding align="center">
  75. <h2>Please select a button!</h2>
  76. </div>
  77. <!-- First row of buttons -->
  78. <div class="row">
  79.  
  80. <!-- First column -->
  81. <div class="col col-50 col-offset-10" style="padding-top:1cm;">
  82. <button type="submit" class="button large_button" id="button1">Click me!</button>
  83. </div>
  84.  
  85. <!-- First column -->
  86. <div class="col col-50" style="padding-top:1cm;">
  87. <button type="submit" class="button large_button" id="button2">Click me!</button>
  88. </div>
  89.  
  90. </div>
  91.  
  92. <div class="row">
  93.  
  94. <!-- First column -->
  95. <div class="col col-50 col-offset-10" style="padding-top:1cm;">
  96. <button type="submit" class="button large_button" id="button3">Click me!</button>
  97. </div>
  98.  
  99. <!-- First column -->
  100. <div class="col col-50" style="padding-top:1cm;">
  101. <button type="submit" class="button large_button" id="button4">Click me!</button>
  102. </div>
  103.  
  104. </div>
  105.  
  106. <div align="center">
  107. <button class="button button-bar button-dark start-button" ng-click="startAnimation()">Start</button>
  108. </div>
  109.  
  110. <div align="left" style="padding-left:5cm;padding-top:1cm;">
  111. <h1>Level 1
  112. <i class="icon ion-android-checkbox"></i></h1>
  113. </div>
  114.  
  115.  
  116. </ion-content>
  117. </ion-view>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement