Advertisement
Guest User

Untitled

a guest
Apr 29th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. body {
  2. margin: 0;
  3. padding: 0;
  4. background: #ddd;
  5. font-family: sans-serif;
  6. color: #444;
  7. display: flex;
  8. justify-content: center;
  9. align-items: center;
  10. flex-direction: column;
  11. }
  12.  
  13. h1 {
  14. margin: 30px;
  15. user-select: none;
  16. font-size: 6em;
  17. text-align: center;
  18. letter-spacing: 0.05em;
  19. }
  20.  
  21. form {
  22. display: flex;
  23. justify-content: center;
  24. align-items: center;
  25. flex-direction: column;
  26. }
  27.  
  28. input[type=text] {
  29. color: #333;
  30. width: 500px;
  31. border: none;
  32. padding: 0.7em;
  33. padding-left: 1em;
  34. font-size: 3em;
  35. letter-spacing: 0.1em;
  36. }
  37.  
  38. .showError {
  39. border: 2px solid red;
  40. }
  41.  
  42. input[type=submit] {
  43. color: white;
  44. outline: none;
  45. margin: 2em;
  46. background: #212A42;
  47. display: block;
  48. padding: 1em;
  49. width: 300px;
  50. font-size: 2em;
  51. }
  52.  
  53. input[type=submit]:active {
  54. outline: none;
  55. }
  56.  
  57. input[type=submit]:hover {
  58. background: #323B53;
  59. cursor: pointer;
  60. outline: none;
  61. }
  62.  
  63. ::-webkit-input-placeholder {
  64. color: #bbb;
  65. }
  66.  
  67. #powerPoints {
  68. margin-right: auto;
  69. font-size: 2em;
  70. }
  71.  
  72. #powerPointsCounter {
  73. font-weight: 700;
  74. font-size: 1.5em;
  75. color: #323B53;
  76. }
  77.  
  78. .highlightGreen {
  79. color: #74BB72;
  80. }
  81.  
  82. .highlightRed {
  83. color: #C1412E;
  84. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement