Créé dans le cadre du projet de fin d'année de la promo 2018 de CIR2 de l'ISEN Brest/Rennes, le Burger Quizz est une adaptation numérique du jeu télévisé éponyme, plus précisément d'une épreuve spécifique de ce jeu : le "Sel ou Poivre".

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. section#navbar li.current:last-child #score {
  2. display:inline;
  3. padding-top:17px;
  4. padding-left:30px;
  5. padding-right:30px;
  6. padding-bottom:18px;
  7. background: #ffab19;
  8. }
  9. section#game input[type="submit"]#play {
  10. border:none;
  11. background-color:#09b22b;
  12. color:white;
  13. padding:20px;
  14. font-size:170%;
  15. cursor:pointer;
  16. }
  17. section#game {
  18. text-align:center;
  19. }
  20. div#category {
  21. font-size:170%;
  22. font-family:'Lato';
  23. font-weight:300;
  24. margin-top:20px;
  25. }
  26. p#question {
  27. font-size:120%;
  28. }
  29. ul#answers {
  30. padding-left:0px;
  31. }
  32. ul#answers li {
  33. display:inline-block;
  34. background: #b087ff;
  35. width:16%;
  36. padding:20px;
  37. padding-top:38px;
  38. height:42px;
  39. font-size:110%;
  40. color:white;
  41. font-weight:bold;
  42. margin-right:20px;
  43. line-height: 20px;
  44. vertical-align: middle;
  45. cursor: pointer;
  46. }
  47. ul#answers li.good-answer {
  48. background: #57cc6b;
  49. }
  50. ul#answers li.wrong-answer {
  51. background: #cc5757;
  52. }
  53. h2#score {
  54. margin-top: 100px;
  55. font-size:220%;
  56. margin-bottom:10px;
  57. }
  58. p#registerScore, p#conDenied {
  59. width: 40%;
  60. margin: auto;
  61. }
  62. p.success {
  63. padding-top: 30px;
  64. background:#57cc6b;
  65. padding-bottom: 30px;
  66. }
  67. p.error {
  68. padding-top: 30px;
  69. background:#cc5757;
  70. padding-bottom: 30px;
  71. color:white;
  72. }
  73. p#conDenied {
  74. margin-top:70px;
  75. }
  76. @media all and (max-width: 799px) {
  77. ul#answers li {
  78. display:block;
  79. margin:auto;
  80. margin-bottom:10px;
  81. width:80%;
  82. padding-top:15px;
  83. height: 20px;
  84. }
  85. }
  86. @media all and (min-width: 800px) {
  87. ul#answers li:last-child {
  88. margin-right:0px;
  89. }
  90. }