Advertisement
Guest User

Untitled

a guest
Apr 5th, 2018
421
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. * {
  2. padding: 0;
  3. margin: 0;
  4. }
  5. html,
  6. body {
  7. height: 100%;
  8. font-size: 24px;
  9. display: flex;
  10. flex-direction: column;
  11.  
  12. }
  13. body > * {
  14. flex-shrink: 0;
  15. border: 1px solid #FF3300;
  16. border-radius: 8px;
  17. margin: 0 auto;
  18. }
  19. header {
  20.  
  21. background-color: #5F9F9F;
  22. width: 600px;
  23. text-align: center;
  24.  
  25. }
  26. footer {
  27. width: 600px;
  28. text-align: center;
  29. font-size: 12px;
  30. }
  31. #settings {
  32. background-color: #5F9F9F;
  33. width: 600px;
  34. text-align: center;
  35.  
  36. }
  37. #controls {
  38. background-color: #5F9F9F;
  39. width: 600px;
  40. text-align: center;
  41.  
  42. }
  43. #status {
  44. background-color: #5F9F9F;
  45. width: 600px;
  46. text-align: center;
  47. display: none;
  48.  
  49. }
  50. #content {
  51. padding: 5px;
  52. width: 590px;
  53. height: 380px;
  54.  
  55. }
  56. .correctAnswer {
  57. color: green;
  58. }
  59. .incorrectAnswer {
  60. color: red;
  61. }
  62. #nextButton {
  63. width: 300px;
  64. height: 100px;
  65. font-size: 26px;
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement