learning-theory.css 22 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066
  1. body {
  2. background: #F0F0F0;
  3. padding-bottom: 150px;
  4. --color-process: linear-gradient(to right, #f9d423 0%, #f9ab1b 51%, #f85b09 100%);
  5. }
  6. .main-container {
  7. background: unset;
  8. }
  9. .body-container {
  10. min-height: unset;
  11. }
  12. .theory-body {
  13. padding: 30px 15px 0px;
  14. overflow: hidden;
  15. }
  16. .theory-body > .body-cover {
  17. max-width: 1140px;
  18. margin: auto;
  19. }
  20. .theory-process {
  21. display: flex;
  22. }
  23. .theory-process .button-exit {
  24. display: inline-block;
  25. margin: auto auto auto 0px;
  26. text-decoration: none;
  27. outline: 0px;
  28. border: 0px;
  29. width: 19px;
  30. height: 19px;
  31. background: url('../imgs/icon-bg-reading.svg') 0px 0px;
  32. cursor: pointer;
  33. }
  34. .theory-process .button-tooltip {
  35. display: inline-block;
  36. margin: auto 0px auto auto;
  37. text-decoration: none;
  38. outline: 0px;
  39. border: 0px;
  40. width: 20px;
  41. height: 20px;
  42. background: url('../imgs/icon-bg-reading.svg') 0px -480px;
  43. cursor: pointer;
  44. }
  45. .theory-process .process-cover {
  46. display: inline-block;
  47. width: 100%;
  48. height: 6px;
  49. background: #CFCFCF;
  50. margin: auto 0px;
  51. position: relative;
  52. }
  53. /*.theory-process .process-cover::after{
  54. content: "";
  55. display: inline-block;
  56. width: 6px;
  57. height: 6px;
  58. border-radius: 50%;
  59. background: inherit;
  60. position: absolute;
  61. right: 0px;
  62. top: 50%;
  63. transform: translate(0px, -50%);
  64. }*/
  65. .theory-process .theory-process-bar {
  66. display: inline-block;
  67. width: 0%;
  68. height: 6px;
  69. position: absolute;
  70. left: 0px;
  71. top: 50%;
  72. transform: translate(0px, -50%);
  73. transition: 0.5s all ease-out;
  74. background: var(--color-process);
  75. z-index: 1;
  76. }
  77. .theory-bottom {
  78. width: 100%;
  79. height: 150px;
  80. background: #fff;
  81. padding: 0px 15px;
  82. position: fixed;
  83. z-index: 1000;
  84. bottom: 0px;
  85. left: 0px;
  86. right: 0px;
  87. }
  88. .theory-bottom .bottom-cover {
  89. max-width: 1140px;
  90. display: flex;
  91. height: 100%;
  92. margin: auto;
  93. }
  94. .theory-bottom .button {
  95. display: inline-block;
  96. width: 150px;
  97. height: 50px;
  98. text-decoration: none;
  99. text-align: center;
  100. border-radius: 30px;
  101. line-height: 48px;
  102. outline: 0px;
  103. border: 0px;
  104. font-family: opensanssemibold;
  105. font-size: 14px;
  106. margin: auto;
  107. border: 1px solid #CFCFCF;
  108. background: transparent;
  109. color: var(--color-default-text);
  110. transition: all 0.2s linear;
  111. }
  112. .theory-bottom .button.button-prev {
  113. margin-left: 0px;
  114. }
  115. .theory-bottom .button.button-next {
  116. /* background: var(--color-default-bg);*/
  117. background: #F39C12;
  118. margin-right: 0px;
  119. color: #fff;
  120. }
  121. .theory-show-question {
  122. animation-name: D;
  123. animation-duration: .4s;
  124. animation-fill-mode: forwards;
  125. animation-timing-function: ease-out;
  126. position: relative;
  127. }
  128. .theory-hide-question {
  129. animation-name: E;
  130. animation-duration: .4s;
  131. animation-fill-mode: forwards;
  132. animation-timing-function: ease-out
  133. }
  134. .theory-show-question.prev {
  135. animation-name: DD;
  136. animation-duration: .4s;
  137. animation-fill-mode: forwards;
  138. animation-timing-function: ease-out;
  139. position: relative;
  140. }
  141. .theory-hide-question.prev {
  142. animation-name: EE;
  143. animation-duration: .4s;
  144. animation-fill-mode: forwards;
  145. animation-timing-function: ease-out
  146. }
  147. .theory-data-list {
  148. padding: 0px;
  149. margin-top: 30px;
  150. position: relative;
  151. }
  152. .theory-data-item {
  153. position: absolute;
  154. top: 0px;
  155. left: 0px;
  156. right: 0px;
  157. display: none;
  158. width: 100%;
  159. max-width: 1140px;
  160. max-height: calc(100vh - 30px - 70px - 50px - 150px);
  161. overflow-y: hidden;
  162. overflow-x: hidden;
  163. z-index: 2;
  164. padding: 5px 0px;
  165. }
  166. .theory-data-item.item-current {
  167. position: relative;
  168. display: block;
  169. z-index: 1;
  170. }
  171. .theory-data-item .data-img-cover {
  172. text-align: center;
  173. margin-bottom: 25px;
  174. position: relative;
  175. width: 100%;
  176. max-width: 225px;
  177. display: inline-block;
  178. }
  179. .theory-data-item .data-img-cover img {
  180. width: 100%;
  181. border: 5px solid #fff;
  182. box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
  183. max-height: 225px;
  184. }
  185. .theory-data-content {
  186. max-width: 625px;
  187. margin: auto;
  188. height: calc(100vh - 30px - 70px - 50px - 150px);
  189. overflow-y: auto;
  190. overflow-x: hidden;
  191. padding-right: 10px;
  192. }
  193. .theory-data-content .data-title {
  194. font-family: opensanslight;
  195. font-size: 25px;
  196. color: var(--color-default-text);
  197. line-height: 30px;
  198. margin-bottom: 10px;
  199. }
  200. .theory-data-content .data-detail {
  201. font-family: opensanslight;
  202. font-size: 15px;
  203. color: #231F20;
  204. line-height: 24px;
  205. margin-bottom: 10px;
  206. position: relative;
  207. }
  208. .theory-data-content .data-detail:hover {
  209. cursor: pointer;
  210. }
  211. .data-detail-sub {
  212. font-family: opensansitalic;
  213. }
  214. .theory-data-content .tooltip.bottom {
  215. padding: 5px 0;
  216. margin-top: 3px;
  217. width: 100%;
  218. left: 0 !important;
  219. }
  220. .theory-data-content .tooltip-inner {
  221. max-width: 625px !important;
  222. margin: auto;
  223. padding: 20px !important;
  224. font-size: 14px;
  225. text-align: left;
  226. font-family: opensanslight;
  227. border-radius: 10px;
  228. }
  229. .theory-data-content .tooltip-inner .data-note {
  230. color: #fff;
  231. }
  232. .theory-data-content .tooltip-inner .data-note::before {
  233. border-color: #fff
  234. }
  235. .theory-data-content .tooltip.bottom .tooltip-arrow {
  236. left: 60px !important;
  237. }
  238. .theory-data-content .data-line {
  239. width: 100%;
  240. height: 1px;
  241. background: #E5E5E5;
  242. margin-bottom: 10px;
  243. }
  244. .tooltip-title {
  245. font-size: 13px;
  246. font-family: opensanssemibold;
  247. }
  248. .tooltip-content {
  249. font-size: 14px;
  250. margin-top: 5px;
  251. display: block;
  252. }
  253. .theory-data-content .data-example {
  254. font-family: opensansregular;
  255. font-size: 13px;
  256. color: var(--color-default-text);
  257. margin-bottom: 15px;
  258. }
  259. .theory-data-content .icon-sound {
  260. display: inline-block;
  261. width: 25px;
  262. height: 25px;
  263. background: url('../imgs/icon-bg-reading.svg') 0px -450px;
  264. outline: 0px;
  265. text-decoration: none;
  266. vertical-align: middle;
  267. border-radius: 50%;
  268. margin: 0px 5px;
  269. }
  270. .theory-data-content .icon-sound.sound-active {
  271. animation: animateSound 1.5s infinite linear;
  272. }
  273. .theory-data-content .data-sentence-en {
  274. font-family: opensansregular;
  275. font-size: 15px;
  276. color: #00B8F1;
  277. margin-bottom: 10px;
  278. }
  279. .theory-data-content .data-sentence-vi {
  280. font-family: opensanslight;
  281. font-size: 15px;
  282. color: #777777;
  283. margin-bottom: 10px;
  284. }
  285. .theory-data-content .data-form {
  286. font-family: opensanssemibold;
  287. font-size: 15px;
  288. color: #231F20;
  289. margin-bottom: 15px;
  290. }
  291. .data-note {
  292. font-family: opensanslight;
  293. font-size: 14px;
  294. color: #474747;
  295. margin-bottom: 10px;
  296. padding-left: 15px;
  297. position: relative;
  298. display: block;
  299. margin-top: 10px;
  300. }
  301. .data-note::before {
  302. content: "";
  303. display: inline-block;
  304. width: 5px;
  305. height: 5px;
  306. border-radius: 50%;
  307. border: 1px solid #474747;
  308. position: absolute;
  309. left: 0px;
  310. top: 8px;
  311. }
  312. .theory-data-content .data-button-more {
  313. display: inline-block;
  314. min-width: 90px;
  315. padding: 0px 10px;
  316. height: 35px;
  317. border: 1px solid #E5E5E5;
  318. line-height: 33px;
  319. border-radius: 2px;
  320. font-family: opensanssemibold;
  321. font-size: 13px;
  322. color: #BBBBBC;
  323. outline: 0px;
  324. text-decoration: none;
  325. text-align: center;
  326. margin-top: 10px;
  327. transition: 0.2s all ease;
  328. margin-bottom: 10px;
  329. }
  330. .theory-data-content .data-button-more:hover {
  331. color: #00BCEF;
  332. }
  333. .theory-data-content strong {
  334. font-family: opensanssemibold;
  335. font-weight: normal;
  336. }
  337. .theory-data-content .sub-usage-content {
  338. font-family: opensansitalic;
  339. }
  340. .theory-data-img {
  341. position: relative;
  342. text-align: center;
  343. }
  344. .theory-data-item .data-flag {
  345. display: inline-block;
  346. font-family: opensanssemibold;
  347. font-size: 11px;
  348. line-height: 14px;
  349. color: #fff;
  350. width: 38px;
  351. text-align: center;
  352. position: absolute;
  353. padding: 15px 0px 20px;
  354. background: #7AC60C;
  355. top: 0px;
  356. left: -65px;
  357. cursor: default;
  358. }
  359. .theory-data-item[typeData='6'] .data-flag {
  360. background: #7AC60C;
  361. }
  362. .theory-data-item[typeData='2'] .data-flag {
  363. background: #F6BD00;
  364. }
  365. .theory-data-item[typeData='3'] .data-flag {
  366. background: #F43442;
  367. }
  368. .theory-data-item[typeData='4'] .data-flag {
  369. background: #00B8F1;
  370. }
  371. .theory-data-item[typeData='5'] .data-flag {
  372. background: #FF7900;
  373. }
  374. .theory-data-item .data-flag::before {
  375. content: "";
  376. display: inline-block;
  377. width: 100%;
  378. height: 7px;
  379. background: #3C2415;
  380. position: absolute;
  381. top: 0px;
  382. left: 0px;
  383. opacity: 0.1;
  384. }
  385. .theory-data-item .data-flag::after {
  386. content: "";
  387. display: inline-block;
  388. width: 100%;
  389. height: 8px;
  390. border-width: 0px 19px 8px 19px;
  391. border-color: transparent transparent #F0F0F0 transparent;
  392. border-style: solid;
  393. position: absolute;
  394. left: 0px;
  395. bottom: 0px;
  396. }
  397. .theory-data-paginate {
  398. width: calc(100% - 330px);
  399. height: 100%;
  400. margin: auto;
  401. position: relative;
  402. overflow: auto;
  403. }
  404. .theory-data-paginate .paginate-item {
  405. text-align: center;
  406. position: absolute;
  407. left: 50%;
  408. top: 50%;
  409. transform: translate(-50%, -50%);
  410. display: none;
  411. z-index: 2;
  412. width: 100%;
  413. overflow: hidden;
  414. }
  415. .theory-data-paginate .paginate-item.paginate-current {
  416. z-index: 1;
  417. }
  418. .theory-data-paginate .paginate-item .paginate-item-cover {
  419. text-align: center;
  420. }
  421. .theory-data-paginate .paginate-number {
  422. display: inline-block;
  423. width: 20px;
  424. height: 20px;
  425. text-align: center;
  426. line-height: 20px;
  427. text-decoration: none;
  428. font-family: opensanssemibold;
  429. font-size: 13px;
  430. color: #231F20;
  431. background: #BCBCBC;
  432. border-radius: 50%;
  433. box-shadow: 0px 0px 0px 5px #E6E7E8;
  434. margin: 13px;
  435. transition: all .3s;
  436. }
  437. .theory-data-paginate .paginate-number.paginate-active {
  438. color: #fff;
  439. background: #7AC60C;
  440. box-shadow: 0px 0px 0px 5px rgba(122, 198, 12, 0.2);
  441. }
  442. .theory-bullet .bullet-item {
  443. display: inline-block;
  444. width: 8px;
  445. height: 8px;
  446. border-radius: 50%;
  447. outline: 0px;
  448. text-decoration: none;
  449. margin-right: 12px;
  450. margin-bottom: 12px;
  451. background: #BBBBBC;
  452. vertical-align: middle;
  453. }
  454. .theory-bullet-cover {
  455. text-align: left;
  456. }
  457. .theory-bullet .bullet-item.bullet-active {
  458. width: 10px;
  459. height: 10px;
  460. }
  461. .theory-data-item[typeData='1'] .theory-bullet .bullet-item.bullet-active {
  462. background: #7AC60C;
  463. }
  464. .theory-data-item[typeData='6'] .theory-bullet .bullet-item.bullet-active {
  465. background: #7AC60C;
  466. }
  467. .theory-data-item[typeData='2'] .theory-bullet .bullet-item.bullet-active {
  468. background: #F6BD00;
  469. }
  470. .theory-data-item[typeData='3'] .theory-bullet .bullet-item.bullet-active {
  471. background: #F43442;
  472. }
  473. .theory-data-item[typeData='4'] .theory-bullet .bullet-item.bullet-active {
  474. background: #00B8F1;
  475. }
  476. .theory-data-item[typeData='5'] .theory-bullet .bullet-item.bullet-active {
  477. background: #FF7900;
  478. }
  479. .theory-bullet {
  480. margin-top: 25px;
  481. }
  482. .theory-list-button {
  483. margin: auto;
  484. text-align: center;
  485. }
  486. .theory-list-button .button-item {
  487. display: inline-block;
  488. font-family: opensansregular;
  489. font-size: 13px;
  490. color: #BBBBBC;
  491. margin: 0px 20px;
  492. text-align: center;
  493. text-decoration: none;
  494. outline: 0px;
  495. }
  496. .theory-list-button .button-item:hover {
  497. color: var(--color-default-text);
  498. }
  499. .theory-list-button .button-item .icon {
  500. display: flex;
  501. height: 30px;
  502. margin-bottom: 5px;
  503. }
  504. .theory-list-button .button-item .icon::after {
  505. content: "";
  506. display: inline-block;
  507. margin: auto;
  508. background: url('../imgs/icon-bg-reading.svg');
  509. }
  510. .theory-list-button .button-item.item-1 .icon::after {
  511. width: 20px;
  512. height: 24px;
  513. background-position: 0px -760px;
  514. }
  515. .theory-list-button .button-item.item-1:hover .icon::after {
  516. width: 20px;
  517. height: 24px;
  518. background-position: 0px -790px;
  519. }
  520. .theory-list-button .button-item.item-3 .icon::after {
  521. width: 20px;
  522. height: 20px;
  523. background-position: 0px -820px;
  524. }
  525. .theory-list-button .button-item.item-3:hover .icon::after {
  526. width: 20px;
  527. height: 20px;
  528. background-position: 0px -845px;
  529. }
  530. .theory-list-button .button-item.item-4 .icon::after {
  531. width: 20px;
  532. height: 20px;
  533. background-position: 0px -1210px;
  534. }
  535. .theory-list-button .button-item.item-4:hover .icon::after {
  536. width: 20px;
  537. height: 20px;
  538. background-position: 0px -1240px;
  539. }
  540. .theory-list-button .button-item.item-5 .icon::after {
  541. background-image: url('../imgs/learning-icon-bg.svg');
  542. width: 19px;
  543. height: 21px;
  544. background-position: 0px -720px;
  545. }
  546. .theory-list-button .button-item.item-5:hover .icon::after {
  547. background-image: url('../imgs/learning-icon-bg.svg');
  548. width: 19px;
  549. height: 21px;
  550. background-position: 0px -750px;
  551. }
  552. .theory-list-button .button-item.item-2 .icon::after {
  553. width: 25px;
  554. height: 26px;
  555. background-position: 0px -870px;
  556. }
  557. .theory-list-button .button-item.item-2:hover .icon::after {
  558. width: 25px;
  559. height: 26px;
  560. background-position: 0px -900px;
  561. }
  562. .theory-data-content .icon-info {
  563. display: inline-block;
  564. width: 20px;
  565. height: 20px;
  566. background: url('../imgs/icon-bg-reading.svg') 0px -1270px;
  567. outline: 0px;
  568. text-decoration: none;
  569. vertical-align: middle;
  570. border-radius: 50%;
  571. margin: auto 10px;
  572. }
  573. .theory-data-content .icon-info:hover {
  574. background-position: 0px -1300px;
  575. }
  576. @keyframes animateSound {
  577. 0% {
  578. box-shadow: 0px 0px 0px 0px #00b8f1;
  579. }
  580. 100% {
  581. box-shadow: 0px 0px 0px 10px transparent;
  582. }
  583. }
  584. @keyframes D {
  585. 0% {
  586. opacity: 0;
  587. -webkit-transform: translateX(50px);
  588. transform: translateX(50px)
  589. }
  590. to {
  591. opacity: 1;
  592. -webkit-transform: translateX(0);
  593. transform: translateX(0)
  594. }
  595. }
  596. @keyframes E {
  597. 0% {
  598. opacity: 1;
  599. -webkit-transform: translateX(0);
  600. transform: translateX(0)
  601. }
  602. to {
  603. opacity: 0;
  604. -webkit-transform: translateX(-50px);
  605. transform: translateX(-50px)
  606. }
  607. }
  608. @keyframes DD {
  609. 0% {
  610. opacity: 0;
  611. -webkit-transform: translateX(-50px);
  612. transform: translateX(-50px)
  613. }
  614. to {
  615. opacity: 1;
  616. -webkit-transform: translateX(0);
  617. transform: translateX(0)
  618. }
  619. }
  620. @keyframes EE {
  621. 0% {
  622. opacity: 1;
  623. -webkit-transform: translateX(0);
  624. transform: translateX(0)
  625. }
  626. to {
  627. opacity: 0;
  628. -webkit-transform: translateX(50px);
  629. transform: translateX(50px)
  630. }
  631. }
  632. ._491z {
  633. display: none;
  634. }
  635. /*begin fault popup*/
  636. .fault-dialog {
  637. max-width: 450px;
  638. width: 100%;
  639. }
  640. .fault-dialog .modal-content {
  641. border-radius: 6px;
  642. }
  643. .fault-title {
  644. font-size: 20px;
  645. color: #E43439;
  646. margin-top: 10px;
  647. text-transform: uppercase;
  648. }
  649. .fault-title img {
  650. margin-top: -5px;
  651. }
  652. .fault-title span {
  653. margin-left: 10px;
  654. }
  655. .fault-subtitle {
  656. font-size: 13px;
  657. }
  658. .fault-dialog .close-box {
  659. margin-right: -30px;
  660. cursor: pointer;
  661. }
  662. .slt-fault {
  663. border: 1px solid #4c87ed;
  664. height: 40px;
  665. margin-bottom: 15px;
  666. }
  667. .slt-fault {
  668. border: 1px solid #ddd;
  669. height: 40px;
  670. margin-bottom: 0px;
  671. padding: 10px;
  672. border-radius: 4px;
  673. }
  674. .slt-fault:hover {
  675. cursor: pointer;
  676. }
  677. .slt-fault:focus {
  678. border-color: #E43439;
  679. }
  680. .slt-fault-option {
  681. padding: 10px 0px;
  682. border: 1px solid #ededed;
  683. position: absolute;
  684. width: calc(100% - 30px);
  685. z-index: 1;
  686. background: #fff;
  687. border-radius: 4px;
  688. display: none;
  689. }
  690. .slt-fault-option span {
  691. background: #F5F5F5;
  692. padding: 6px 10px;
  693. border-radius: 20px;
  694. width: calc(50% - 20px);
  695. display: inline-block;
  696. margin-left: 10px;
  697. margin-right: 10px;
  698. font-size: 13px;
  699. float: left;
  700. margin-bottom: 10px;
  701. }
  702. .slt-fault-option span:hover, .slt-fault-option-active span {
  703. cursor: pointer;
  704. background: #F9EDEE;
  705. color: #E43439;
  706. }
  707. .txt-fault {
  708. border: 1px solid #ddd !important;
  709. margin-bottom: 10px;
  710. resize: none;
  711. }
  712. .txt-fault:active, .txt-fault:focus {
  713. box-shadow: none;
  714. border: 1px solid #E43439 !important;
  715. }
  716. .msg-feedback {
  717. color: #70b100;
  718. }
  719. .cancel-fault {
  720. margin-top: 15px;
  721. height: 33px;
  722. width: 85px;
  723. display: inline-block;
  724. background: #fff;
  725. border: 1px solid #ededed;
  726. line-height: 31px;
  727. text-decoration: none;
  728. margin-left: 5px;
  729. margin-right: 5px;
  730. color: #777;
  731. border-radius: 4px;
  732. text-transform: uppercase;
  733. }
  734. .send-fault {
  735. margin-top: 15px;
  736. height: 30px;
  737. width: 85px;
  738. display: inline-block;
  739. background: #75b924;
  740. line-height: 30px;
  741. text-decoration: none;
  742. margin-left: 5px;
  743. margin-right: 5px;
  744. color: #fff;
  745. border-radius: 4px;
  746. box-shadow: 0px 2px 1px #649928;
  747. text-transform: uppercase;
  748. }
  749. .cancel-fault:hover {
  750. text-decoration: none;
  751. color: #777;
  752. }
  753. .send-fault:hover {
  754. text-decoration: none;
  755. color: #fff;
  756. }
  757. .notification-content a:hover, .mission-content a:hover {
  758. color: #555;
  759. }
  760. .coin-menu-item a:hover {
  761. color: #555;
  762. }
  763. .modal-feedback-header {
  764. padding: 20px 10px 5px;
  765. border-radius: 6px 6px 0px 0px;
  766. }
  767. #feedback-fault .modal-body {
  768. padding: 15px 25px 25px;
  769. }
  770. .feedback-has-sent {
  771. font-size: 20px;
  772. font-family: opensansbold;
  773. color: #7ac60c;
  774. }
  775. .feedback-thanks {
  776. font-size: 15px;
  777. color: #4c87ed;
  778. }
  779. .feedback-sent-img {
  780. margin-bottom: 30px;
  781. margin-top: 75px;
  782. }
  783. #feedback-fault .modal-content {
  784. min-height: 400px;
  785. }
  786. .modal-content-thanks {
  787. display: none;
  788. }
  789. .send-fault {
  790. background: #E43439;
  791. box-shadow: none;
  792. height: 35px;
  793. border: 1px solid #E43439;
  794. line-height: 35px;
  795. border-radius: 20px;
  796. text-transform: none;
  797. font-size: 15px;
  798. width: 150px;
  799. }
  800. .send-fault:hover {
  801. background: #E43439;
  802. }
  803. .txt-fault {
  804. margin-top: 15px;
  805. }
  806. .modal-feedback-header .icon-fault {
  807. display: inline-block;
  808. width: 25px;
  809. height: 25px;
  810. background-image: url('../img/icon-flashcard.png');
  811. background-repeat: no-repeat;
  812. background-position: 0px -348px;
  813. vertical-align: top;
  814. }
  815. .slt-fault .icon-arrow-down {
  816. display: inline-block;
  817. width: 12px;
  818. height: 6px;
  819. border: solid transparent;
  820. border-width: 6px 6px 0px 6px;
  821. border-top-color: #000;
  822. vertical-align: 2px;
  823. }
  824. .slt-fault-value {
  825. width: calc(100% - 12px);
  826. display: inline-block
  827. }
  828. .slt-fault-option p {
  829. display: inline;
  830. }
  831. /*end fault popup*/
  832. /* Begin modal Sample */
  833. @media (min-width: 768px) {
  834. #more-sample-modal .modal-dialog {
  835. width: 670px;
  836. }
  837. }
  838. #more-sample-modal .modal-content {
  839. padding: 30px;
  840. }
  841. #more-sample-modal .modal-sample-title {
  842. font-family: opensanslight;
  843. font-size: 20px;
  844. color: #231F20;
  845. margin-bottom: 10px;
  846. }
  847. .more-sample-item {
  848. display: flex;
  849. border-bottom: 1px solid #E5E5E5;
  850. padding: 20px 0px;
  851. }
  852. .more-sample-item:last-child {
  853. border-bottom: 0px;
  854. }
  855. .more-sample-item .item-image {
  856. width: 94px;
  857. height: 94px;
  858. border: 2px solid #fff;
  859. box-shadow: 0px 0px 5px 0px #E6E7E8;
  860. margin: auto 0px;
  861. }
  862. .more-sample-item .item-data {
  863. width: calc(100% - 94px - 60px);
  864. margin: auto 0px;
  865. padding: 0px 20px;
  866. }
  867. .more-sample-item .item-data .data-sentence-en {
  868. font-family: opensansregular;
  869. font-size: 15px;
  870. color: #00BCEF;
  871. line-height: 22px;
  872. margin-bottom: 5px;
  873. }
  874. .more-sample-item .item-data .data-sentence-vi {
  875. font-family: opensanslight;
  876. font-size: 15px;
  877. color: #414042;
  878. line-height: 22px;
  879. margin-bottom: 5px;
  880. }
  881. .more-sample-item .icon-sound {
  882. display: inline-block;
  883. width: 25px;
  884. height: 25px;
  885. background: url('../imgs/icon-bg-reading.svg') 0px -450px;
  886. outline: 0px;
  887. text-decoration: none;
  888. vertical-align: middle;
  889. border-radius: 50%;
  890. margin: auto auto auto 0px;
  891. }
  892. .more-sample-item .icon-sound.sound-active {
  893. animation: animateSound 1.5s infinite linear;
  894. }
  895. .more-sample-item .icon-info {
  896. display: inline-block;
  897. width: 25px;
  898. height: 25px;
  899. background: url('../imgs/icon-bg-reading.svg') 0px -1210px;
  900. outline: 0px;
  901. text-decoration: none;
  902. vertical-align: middle;
  903. border-radius: 50%;
  904. margin: auto 0px;
  905. }
  906. .more-sample-item .icon-info:hover {
  907. background-position: 0px -1240px;
  908. }
  909. /* End modal Sample */