templates/frontend/default/entryRequirements.html.twig line 1

Open in your IDE?
  1. <style>
  2. #entryRequirements{
  3. margin-bottom: 4vw
  4. }
  5. #entryRequirements .success{
  6. background-image:url('{{ asset('images/entry_bg_success.png') }}');
  7. background-size: 100%;
  8. background-position: top;
  9. background-repeat: no-repeat;
  10. background-color: transparent;
  11. width: 95%;
  12. height: 75vw;
  13. position: relative;
  14. margin: auto;
  15. display: none;
  16. }
  17. #entryRequirements .fail{
  18. background-image:url('{{ asset('images/entry_bg_fail.png') }}');
  19. background-size: 100%;
  20. background-position: top;
  21. background-repeat: no-repeat;
  22. background-color: transparent;
  23. width: 95%;
  24. height: 90vw;
  25. position: relative;
  26. margin: auto;
  27. }
  28. #entryRequirements .userPhone {
  29. position: relative;
  30. display: flex;
  31. justify-content: center;
  32. margin-bottom: 5vw;
  33. }
  34. #entryRequirements .success .userPhone {
  35. top: 62.5vw;
  36. left: 13vw
  37. }
  38. #entryRequirements .fail .userPhone {
  39. top: 66.5vw;
  40. left: 13vw
  41. }
  42. #entryRequirements .userPhone span{
  43. font-size: 3.5vw;
  44. color: #333333;
  45. }
  46. #entryRequirements .userStatus{
  47. position: relative;
  48. top: 60vw;
  49. }
  50. #entryRequirements .validUser{
  51. position: relative;
  52. color:#00FFDE;
  53. bottom: 18vw;
  54. font-size: 3vw
  55. }
  56. #entryRequirements .userStatus img {
  57. width: 30%;
  58. }
  59. #entryRequirements .userStatusApplication {
  60. margin-top: 11vw;
  61. }
  62. @media only screen and (min-width: 700px) {
  63. #entryRequirements .success .userPhone{
  64. top: 47vw;
  65. left: 10vw;
  66. }
  67. #entryRequirements .userPhone span{
  68. font-size: 2.5vw;
  69. font-family: 'Noto Sans CJK TC';
  70. font-weight: bold;
  71. }
  72. #entryRequirements .validUser{
  73. bottom: 12vw;
  74. font-size: 2.5vw;
  75. font-family: 'Noto Sans CJK TC';
  76. }
  77. #entryRequirements .success{
  78. height: 55vw;
  79. }
  80. #entryRequirements .fail{
  81. height: 68vw;
  82. }
  83. #entryRequirements .fail .userPhone{
  84. top: 50vw;
  85. left: 10vw;
  86. }
  87. #entryRequirements .userStatus {
  88. top:42vw
  89. }
  90. }
  91. @media only screen and (min-width: 1024px) {
  92. #entryRequirements .success .userPhone{
  93. top: 46.5vw;
  94. left: 10vw;
  95. }
  96. #entryRequirements .fail .userPhone{
  97. top: 49.5vw;
  98. left: 10vw;
  99. }
  100. }
  101. </style>
  102. <div id="entryRequirements">
  103. <div class="success">
  104. <div class="userPhone">
  105. <span></span>
  106. </div>
  107. <div class="userStatus">
  108. <div class="validUser"></div>
  109. </div>
  110. </div>
  111. <div class="fail">
  112. <div class="userPhone">
  113. <span></span>
  114. </div>
  115. <div class="userStatus">
  116. <div class="userStatusApplication">
  117. <a href="{{ applicationPage }}">
  118. <img src="{{ asset('images/login_btn.png')}}"/>
  119. </a>
  120. </div>
  121. </div>
  122. </div>
  123. </div>