Reac front end for psicometric app

App.css 6.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. :root {
  2. --main: #fd4b4b;
  3. --second: #2ec5d3;
  4. }
  5. .App {
  6. text-align: center;
  7. }
  8. .App-logo {
  9. height: 40vmin;
  10. pointer-events: none;
  11. }
  12. @media (prefers-reduced-motion: no-preference) {
  13. .App-logo {
  14. animation: App-logo-spin infinite 20s linear;
  15. }
  16. }
  17. .App-header {
  18. background-color: #282c34;
  19. min-height: 100vh;
  20. display: flex;
  21. flex-direction: column;
  22. align-items: center;
  23. justify-content: center;
  24. font-size: calc(10px + 2vmin);
  25. color: white;
  26. }
  27. .App-link {
  28. color: #61dafb;
  29. }
  30. @keyframes App-logo-spin {
  31. from {
  32. transform: rotate(0deg);
  33. }
  34. to {
  35. transform: rotate(360deg);
  36. }
  37. }
  38. .Mui-MuiInput{
  39. background-color : #fd4b4b;
  40. }
  41. .Mui-selected{
  42. /* se desahilito para la tabla de password */
  43. color : #FFF !important;
  44. background-color : #fd4b4b !important;
  45. /* background-color : rgba(253, 75, 75, 0.1) !important; */
  46. }
  47. .Mui-selected > .MuiListItemIcon-root{
  48. color : #FFF !important;
  49. }
  50. .MuiBadge-badge{
  51. background-color : #fd4b4b !important;
  52. }
  53. .MuiListSubheader-root{
  54. padding-left : 15px !important;
  55. color : #cbcbcb !important;
  56. font-weight : bold !important;
  57. padding-bottom : 0px !important;
  58. margin-bottom : 0px !important;
  59. line-height: 30px !important;
  60. font-size : 12px !important;
  61. }
  62. .MuiContainer-root{
  63. margin-top : 90px !important;
  64. max-width : 1777px !important;
  65. padding : 0px;
  66. }
  67. .panel_card{
  68. display: flex;
  69. flex-wrap: wrap;
  70. align-content: center;
  71. justify-content: space-around;
  72. align-items: center;
  73. flex-direction: row;
  74. padding : 90px;
  75. max-height : 175px;
  76. /* margin-bottom:20px */
  77. }
  78. .MuiFormControl{
  79. border : 1px solid #eceff1;
  80. }
  81. .actions_butons_plaza{
  82. display: flex;
  83. flex-direction: row;
  84. align-content: center;
  85. justify-content: space-around;
  86. align-items: flex-start;
  87. padding : 10px;
  88. }
  89. .activar_vista{
  90. display : block !important;
  91. transition: opacity 0.5s;
  92. opacity: 1;
  93. }
  94. .desactivar_vista{
  95. display : none !important;
  96. opacity: 0;
  97. pointer-events:none;
  98. }
  99. .grid_btn{
  100. font-size : 20px !important;
  101. color: #b9c3ce;
  102. transition: all 0.3s;
  103. cursor: pointer;
  104. }
  105. .error_feedback{
  106. font-size: 13px;
  107. color: #2ec5d3;
  108. font-weight :bold;
  109. padding-top : 5px;
  110. margin: 0px;
  111. }
  112. .content-section{
  113. min-height:100vh !important;
  114. }
  115. #todas_las_pruebas_body{
  116. display : block;
  117. }
  118. #comportamiento_body{
  119. display : none;
  120. }
  121. #personalidad_body{
  122. display : none;
  123. }
  124. #inteligencia_body{
  125. display : none;
  126. }
  127. #container_btn_agregar_pregunta{
  128. display: flex;
  129. flex-direction: column;
  130. flex-wrap: nowrap;
  131. align-content: stretch;
  132. justify-content: flex-start;
  133. }
  134. /* .MuiButton-root:hover{ */
  135. /* background-color : #fd4b4b !important; */
  136. /* } */
  137. .css-ghsjzk-MuiInputBase-root-MuiInput-root:before{
  138. border : none !important;
  139. }
  140. .login_link{
  141. color : #2ec5d3;
  142. }
  143. .registerBtn{
  144. background-color: #fd4b4b !important;
  145. }
  146. .login_link:hover{
  147. font-weight : bold;
  148. color : #3ec5d3;
  149. }
  150. .MuiStepIcon-root.Mui-completed{
  151. color: #fd4b4b !important;
  152. }
  153. .MuiStepIcon-root.Mui-active {
  154. color: #fd4b4b !important;
  155. }
  156. .card_register{
  157. min-height: 90vh;
  158. display: flex;
  159. flex-direction: column;
  160. flex-wrap: nowrap;
  161. justify-content: space-evenly;
  162. align-items: stretch;
  163. align-content: stretch;
  164. padding : 35px;
  165. }
  166. .register_content{
  167. display: flex;
  168. flex-wrap: wrap;
  169. flex-direction: row;
  170. justify-content: space-evenly;
  171. align-items :stretch;
  172. }
  173. #password_header{
  174. margin-bottom: 20px;
  175. padding-bottom: 20px;
  176. }
  177. #pass_footer_row{
  178. display: flex;
  179. }
  180. .contras_operation{
  181. display : flex;
  182. flex-direction:row;
  183. }
  184. .feedback_error{
  185. color: #fd4b4b;
  186. font-size:14px;
  187. }
  188. #login_btn_fn:hover{
  189. background-color: var(--second);
  190. }
  191. .btn_plaza_common{
  192. cursor:pointer;
  193. }
  194. .btn_plaza_common:hover{
  195. color:var(--main) !important;
  196. }
  197. .center_pagination_puestos{
  198. display :flex;
  199. flex-direction :row;
  200. }
  201. .menu-shit{
  202. padding-top:57px;
  203. }
  204. .w3-sidebar{height:100%;width:200px;background-color:#fff;position:fixed!important;z-index:1;overflow:auto}
  205. @media (max-width:992px){.w3-sidebar.w3-collapse{display:none}.w3-main{margin-left:0!important;margin-right:0!important}.w3-auto{max-width:100%}}
  206. @media (min-width:993px){.w3-modal-content{width:900px}.w3-hide-large{display:none!important}.w3-sidebar.w3-collapse{display:block!important}}
  207. .w3-bar-block .w3-dropdown-hover,.w3-bar-block .w3-dropdown-click{width:100%}
  208. .w3-bar-block .w3-dropdown-hover .w3-dropdown-content,.w3-bar-block .w3-dropdown-click .w3-dropdown-content{min-width:100%}
  209. .w3-bar-block .w3-dropdown-hover .w3-button,.w3-bar-block .w3-dropdown-click .w3-button{width:100%;text-align:left;padding:8px 16px}
  210. .w3-bar-block .w3-bar-item{width:100%;display:block;padding:8px 16px;text-align:left;border:none;white-space:normal;float:none;outline:0}
  211. .w3-bar-block.w3-center .w3-bar-item{text-align:center}.w3-block{display:block;width:100%}
  212. .w3-border-left{border-left:1px solid #ccc!important}.w3-border-right{border-right:1px solid #ccc!important}
  213. #mySidebar{
  214. z-index : 999;
  215. }
  216. #loading_or_content{
  217. display: grid;
  218. min-height:100vh;
  219. place-content:center;
  220. }
  221. #pagi_bottom{
  222. width:100%;
  223. display:flex;
  224. flex-direction:row;
  225. align-items:baseline;
  226. justify-content:space-between;
  227. }
  228. .css-19kzrtu{
  229. padding:0px !important;
  230. padding-top : 25px !important;
  231. }
  232. .name_header{
  233. max-width:20px;
  234. font-weight:bold;
  235. }
  236. .title_td{
  237. font-weight: bold;
  238. }
  239. .operation_buttons{
  240. display: flex;
  241. flex-direction:row;
  242. }
  243. .icon_op{
  244. border : 1px solid var(--main);
  245. color : var(--main);
  246. margin :5px;
  247. }
  248. .test_list{
  249. max-height: 500px;
  250. display : flex;
  251. }
  252. .card_test{
  253. padding : 15px;
  254. }
  255. #start_title{
  256. padding-bottom:20px;
  257. }
  258. .prueba_body{
  259. padding: 15px;
  260. background: r;
  261. background-color: red;
  262. width: '100%';
  263. min-height: 95vh;
  264. display: flex;
  265. flex-direction: column;
  266. flex-wrap: nowrap;
  267. align-items: stretch;
  268. justify-content: flex-start;
  269. align-content: flex-start;}
  270. .quiz_title_text{
  271. display: flex;
  272. flex-direction: row;
  273. flex-wrap: nowrap;
  274. align-items: baseline !important;
  275. justify-content: flex-start;
  276. }
  277. .checkbox_label_question{
  278. font-weight:bold !important;
  279. }
  280. .question{
  281. display: flex;
  282. flex-direction: column;
  283. flex-wrap: wrap;
  284. align-content: stretch;
  285. justify-content: flex-start;
  286. align-items: stretch;
  287. }
  288. .question_btn{
  289. display:flex;
  290. justify-content: center;
  291. padding-top:35px;
  292. padding-bottom:35px;
  293. margin-bottom:35px;
  294. }