question.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752
  1. .inner-section {
  2. width: 100% !important;
  3. }
  4. .clsmenuactive>a{
  5. color: #00344D !important;
  6. background: none !important;
  7. }
  8. .table{
  9. border-bottom: 2px solid #ccc;
  10. }
  11. .table-fixed thead {
  12. width: 100%;
  13. }
  14. .table-fixed tbody {
  15. height:394px;
  16. overflow-y: auto;
  17. width: 100%;
  18. }
  19. input.survey {
  20. margin-left: 40px;
  21. }
  22. .table-fixed tbody::-webkit-scrollbar {
  23. width: 3px;
  24. }
  25. .table-fixed tbody::-webkit-scrollbar {
  26. height: 3px;
  27. }
  28. .table-fixed tbody::-webkit-scrollbar-track {
  29. -webkit-box-shadow: none;
  30. }
  31. .table-fixed tbody::-webkit-scrollbar-thumb{
  32. background-color: #00AFD7;
  33. }
  34. .table-fixed thead, .table-fixed tbody, .table-fixed tr, .table-fixed td, .table-fixed th {
  35. display: block;
  36. }
  37. .table-fixed tbody td, .table-fixed thead > tr> th {
  38. float: left;
  39. border-bottom-width: 0;
  40. }
  41. #tag::placeholder, textarea::placeholder{
  42. color: #ccc !important;
  43. font-weight: normal !important;
  44. }
  45. #tag{
  46. color: #000 !important;
  47. font-weight: normal !important;
  48. }
  49. fieldset {
  50. background: #fff;
  51. background: -moz-linear-gradient(#fff, #f9fdff);
  52. background: -o-linear-gradient(#fff, #f9fdff);
  53. background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#f9fdff));
  54. padding: 20px;
  55. margin: 0 auto;
  56. border: 1px solid rgb(205, 207, 208);
  57. height: 540px;
  58. overflow-y: auto;
  59. width: 950px;
  60. }
  61. fieldset::-webkit-scrollbar {
  62. width: 3px;
  63. }
  64. fieldset::-webkit-scrollbar {
  65. height: 3px;
  66. }
  67. fieldset::-webkit-scrollbar-track {
  68. -webkit-box-shadow: none;
  69. }
  70. fieldset::-webkit-scrollbar-thumb{
  71. background-color: #00AFD7;
  72. }
  73. input[type="text"], input[type="password"],input[type="email"] {
  74. padding: 8px 6px;
  75. height: 34px;
  76. /*width: 280px;*/
  77. }
  78. input[type="text"]:focus,
  79. input[type="password"]:focus,input[type="email"]:focus{
  80. outline:none !important;
  81. }
  82. .box-header {
  83. color: #444;
  84. display: block;
  85. position: relative;
  86. margin-bottom:10px;
  87. }
  88. .box-header .box-title {
  89. display: inline-block;
  90. font-size: 18px;
  91. margin: 0;
  92. line-height: 1;
  93. }
  94. .input-group
  95. {
  96. magrgin-bottom:15px;
  97. width:100%;
  98. }
  99. .box-footer
  100. {
  101. margin-top:10px;
  102. padding: 10px;
  103. text-align: center;
  104. }
  105. input[type="text"],
  106. textarea {
  107. background: #fff;
  108. border: 1px solid #CCCCCC;
  109. color: #000;
  110. font-size: 14px;
  111. line-height: 1.2em;
  112. margin: 5px 0px;
  113. font-family: Arial, sans-serif !important;
  114. -moz-border-radius:4px;
  115. -webkit-border-radius:4px;
  116. border-radius:4px;
  117. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.2);
  118. }
  119. textarea {
  120. padding: 3px;
  121. width: 100%;
  122. font-family: Arial, sans-serif !important;
  123. height: 100px;
  124. }
  125. .panel{
  126. margin-bottom:0px !important;
  127. padding:0 !important
  128. }
  129. .panel-default>.panel-heading{
  130. height: 48px;
  131. }
  132. .clsrightcont{
  133. /* width: 84%;
  134. padding: 9px*/
  135. }
  136. #cssmenu {
  137. font-size: 13px;
  138. margin: 6px;
  139. width: 15%;
  140. padding: 10px;
  141. background-color: #224562 !important;
  142. border: 1px solid #d0d1d2;
  143. background-image: url(../images/bg.jpg);
  144. background-repeat: no-repeat;
  145. background-position: center;
  146. background-size: cover;
  147. }
  148. .panel-heading{
  149. padding:0;
  150. }
  151. .addfields{
  152. margin: 10px 0;
  153. }
  154. #choicesDisplay {
  155. padding: 10px;
  156. background: rgb(227, 250, 227);
  157. border: 1px solid rgb(171, 239, 171);
  158. color: rgb(9, 56, 9);
  159. }
  160. .remove{
  161. background: #C76868;
  162. color: #FFF;
  163. font-weight: bold;
  164. font-size: 21px;
  165. border: 0;
  166. cursor: pointer;
  167. display: inline-block;
  168. padding: 4px 9px;
  169. vertical-align: top;
  170. line-height: 100%;
  171. }
  172. input[type="text"],
  173. select{
  174. padding:5px;
  175. }
  176. .editicon {
  177. padding-left: 10px;
  178. float: left;
  179. }
  180. .deleteicon {
  181. float: left;
  182. padding-left: 16px;
  183. }
  184. .wrapper .clsquestioncontainer{
  185. height:262px;
  186. overflow-y:auto;
  187. width:100%;
  188. }
  189. .wrapper .clschoicecontainer,.wrapper .clsbuttoncontainer{
  190. height:auto;
  191. overflow:hidden;
  192. }
  193. .wrapper .clschoicecontainer input[type="text"]{
  194. width:100%;
  195. }
  196. .wrapper .clschoicecontainer .clschoicediv{
  197. width:100%;
  198. overflow:hidden;
  199. clear:both;
  200. }
  201. .wrapper .clschoicecontainer input[type="text"]:focus{
  202. background:#f5fcfe;
  203. text-indent: 0;
  204. z-index: 1;
  205. color: #373737;
  206. width:100%;
  207. border-color:#ccc;
  208. box-shadow:0 0 5px rgba(4, 129, 177, 0.5);
  209. ;
  210. }
  211. .wrapper .clsiscorrect,.wrapper .clsopttext,.wrapper .clscoretext,.wrapper .clsdelete{
  212. float:left;
  213. margin:5px 5px;
  214. }
  215. .wrapper .clsiscorrect{
  216. width:25px;
  217. }
  218. .wrapper .clsopttext{
  219. width:70%;
  220. }
  221. .wrapper .clscoretext{
  222. width:10%;
  223. }
  224. .wrapper .clsdelete{
  225. cursor:pointer;
  226. width:7%;
  227. font-size:25px;
  228. padding:10px 0px 0px 10px;
  229. }
  230. .wrapper .clsbuttoncontainer input[type="button"]{
  231. float:left;
  232. }
  233. input[type="checkbox"] {
  234. /*display:none;*/
  235. float:left;
  236. }
  237. input[type="checkbox"] + label {
  238. font-size:14px;
  239. display:inline;
  240. width:100%;
  241. padding: 18px 0px 0px 0px;
  242. }
  243. input[type="checkbox"] + label span {
  244. margin-top:5px;
  245. display:block;
  246. float:left;
  247. width:19px;
  248. height:19px;
  249. margin:5px 4px 0 0;
  250. vertical-align:middle;
  251. cursor:pointer;
  252. -moz-border-radius: 5px;
  253. border-radius: 5px;
  254. background-color:#00AFD7;
  255. }
  256. input[type="checkbox"]:checked + label span{
  257. background:#00AFD7 url(../images/tick_w.png) center center no-repeat;
  258. background-size: 13px;
  259. }
  260. input[type="checkbox"] + label span,
  261. input[type="checkbox"]:checked + label span {
  262. -webkit-transition:background-color 0.4s linear;
  263. -o-transition:background-color 0.4s linear;
  264. -moz-transition:background-color 0.4s linear;
  265. transition:background-color 0.4s linear;
  266. }
  267. .clsiscorrect input[type="checkbox"]
  268. {
  269. display: none;
  270. float: left;
  271. }
  272. fieldset label {
  273. padding: 5px 0 0 0 !important;
  274. }
  275. input[type="text"]::placeholder{
  276. color: #CCCCCC !important;
  277. font-weight: normal !important;
  278. }
  279. .wrapper label {
  280. font-size: 13px;
  281. width: auto;
  282. min-width: 100px;
  283. padding: 8px 0px;
  284. display: inline-block;
  285. color: #00AFD7;
  286. }
  287. .wrapper .clsbuttoncontainer input[type="button"] {
  288. float: left;
  289. padding: 6px;
  290. }
  291. input[type="submit"], input[type="button"] {
  292. background: #211f1f;
  293. border: none;
  294. color: #fff !important;
  295. cursor: pointer;
  296. font-size: 13px;
  297. font-family: Arial, sans-serif !important;
  298. margin: 5px 5px;
  299. float: right;
  300. /* padding: 5px 22px; */
  301. }
  302. form .form-group{
  303. margin-bottom: 10px !important;
  304. }
  305. .user_page {
  306. width: 100%;
  307. height: calc(100% - 85px);
  308. background-image: url(../images/slider2.jpg);
  309. background-size: cover;
  310. background-repeat: no-repeat;
  311. position: relative;
  312. }
  313. .sales_report {
  314. width: 100%;
  315. height: calc(100% - 0px);
  316. }
  317. .fix_height{
  318. height: 100% !important;
  319. }
  320. .wrapper{
  321. height: calc(100% - 15px) !important;
  322. }
  323. .box-title{
  324. font-size: 18px !important;
  325. display: inline !important;
  326. line-height: 33px;
  327. margin: 10px 0px !important;
  328. }
  329. .sales_report .sales_report_in:before {
  330. position: absolute;
  331. width: 100%;
  332. content: "";
  333. height: 100%;
  334. top: 0;
  335. left: 0;
  336. z-index: -1;
  337. opacity: 0.5;
  338. }
  339. .font_14{
  340. font-size:14px !important;
  341. color: #001a27 !important;
  342. }
  343. .modal-header .close{
  344. color: #001a27 !important;
  345. }
  346. .sales_report .sales_report_in {
  347. background-color: rgba(255, 255, 255, 0.3);
  348. background-size: cover;
  349. background-repeat: no-repeat;
  350. position: relative;
  351. width: 100%;
  352. height: 100%;
  353. float: left;
  354. padding: 40px;
  355. }
  356. .sales_report .sales_report_in .sales_card {
  357. width: 100%;
  358. height: 100%;
  359. background-color: #fff;
  360. box-shadow: 0 0 1px 1px #ccc;
  361. padding: 20px;
  362. }
  363. .sales_report .sales_report_in .sales_card .table_area .top_box .left_box {
  364. width: 50%;
  365. float: left;
  366. }
  367. .sales_report .sales_report_in .sales_card .table_area .top_box .right_box {
  368. width: 50%;
  369. float: right;
  370. }
  371. .sales_report .sales_report_in .sales_card .input-group.mb-3 {
  372. float: left;
  373. width: 180px;
  374. padding: 0px 10px;
  375. }
  376. .right_box .sear {
  377. width: 50% ;
  378. float: left;
  379. }
  380. .right_box .addbtn {
  381. width: 50%;
  382. float: left;
  383. padding: 13px 77px;
  384. }
  385. .sales_report .sales_report_in .sales_card form.row.form_2 {
  386. /* padding: 15px 10px; */
  387. }
  388. .form_2 .search {
  389. padding-left: 0;
  390. padding-top: 0;
  391. position: relative;
  392. background-position: 24px 9px;
  393. background-image: url(../images/search.png);
  394. }
  395. .form_2 .form-group .form-control {
  396. width: 100%;
  397. padding-left: 90px;
  398. position: relative;
  399. }
  400. .form_2 .form-group:before {
  401. width: 2px;
  402. height: 15px;
  403. position: absolute;
  404. content: "";
  405. background-color: #00AFD7;
  406. right: 13px;
  407. bottom: 0;
  408. }
  409. .form_2 .form-group:after {
  410. width: 2px;
  411. height: 15px;
  412. position: absolute;
  413. content: "";
  414. background-color: #00AFD7;
  415. left: 0;
  416. bottom: 0;
  417. }
  418. .sales_report .sales_report_in .sales_card .form-group:before {
  419. width: 2px;
  420. height: 15px;
  421. position: absolute;
  422. content: "";
  423. background-color: #00AFD7;
  424. right: 13px;
  425. bottom: 0;
  426. }
  427. .sales_report .sales_report_in .sales_card .form_2 .form-group .form-control {
  428. width: 100%;
  429. padding-left: 90px;
  430. position: relative;
  431. }
  432. .sales_report .sales_report_in .sales_card .form-group:after {
  433. width: 2px;
  434. height: 15px;
  435. position: absolute;
  436. content: "";
  437. background-color: #00AFD7;
  438. left: 0;
  439. bottom: 0;
  440. }
  441. .export {
  442. text-align: center;
  443. margin-top: 0;
  444. background-color: #00344D;
  445. color: #fff !important;
  446. margin-top: 3px;
  447. font-size: 14px;
  448. width: 120px;
  449. height: 40px;
  450. padding: 10px;
  451. border-radius: 0% !important;
  452. outline: none !important;
  453. background-image: url(../images/plus.png);
  454. background-repeat: no-repeat;
  455. background-position: 22px 14px;
  456. }
  457. .export p {
  458. color: #fff;
  459. font-size: 14px;
  460. font-weight: 700;
  461. }
  462. .sales_report .sales_report_in .sales_card .export p {
  463. color: #fff;
  464. font-size: 14px;
  465. font-weight: 700;
  466. }
  467. .sales_report .sales_report_in .sales_card .table_area .bottom_box {
  468. height: calc(100% - 100px);
  469. }
  470. .sear {
  471. width: 100% !important;
  472. float: right !important;
  473. }
  474. .pager{float: right; padding: 10px 0 !important;}
  475. .pager li>a, .pager li>span{border: 0px !important; color: #333;}
  476. .pager li>a:focus, .pager li>a:hover{
  477. text-decoration: none;
  478. background-color: #00344D;
  479. color:#fff;
  480. }
  481. .activeas {
  482. text-decoration: none;
  483. background-color: #00344D !important;
  484. color:#fff !important;
  485. }
  486. input{
  487. color: #333333 !important;
  488. }
  489. form .check{
  490. width: 100% !important;
  491. border: none !important;
  492. border-bottom: 2px solid #00344D !important;
  493. height: 43px !important;
  494. font-size: 16px;
  495. color: #333333 !important;
  496. font-weight: normal;
  497. padding: .375rem 0;
  498. border-radius: 0px;
  499. background-color: #fff !important;
  500. padding-left: 0px;
  501. background-size: 30px;
  502. background-repeat: no-repeat;
  503. background-position: 30px center;
  504. }
  505. .qtype .form-control:focus{
  506. border:none !important;
  507. border-bottom: 2px solid #00344D !important;
  508. }
  509. .btn.primary {
  510. background-color: #00AFD7;
  511. border-color: #00AFD7;
  512. }
  513. .btn.fixed {
  514. width: 150px;
  515. margin: 10px;
  516. }
  517. .profile_bg {
  518. height: calc(100% - 40px);
  519. }
  520. .profile_bg .pro_head {
  521. background-color: #00AFD7;
  522. padding: 8px;
  523. color: #fff;
  524. width: 950px;
  525. margin: 0 auto;
  526. }
  527. .sales_report .sales_report_in .sales_card .form_2 .form-group {
  528. padding-left: 0;
  529. padding-top: 0;
  530. position: relative;
  531. background-position: 24px 9px;
  532. background-image: url(../images/search.png);
  533. }
  534. .form-group.disable {
  535. opacity: 0.4;
  536. }
  537. .clsicondis {
  538. color: #b5b4b4;
  539. cursor: not-allowed;
  540. }
  541. .model_left{
  542. display: inline;
  543. float: left;
  544. text-align: left !important;
  545. padding: 2px 15px;
  546. }
  547. .modal-title{
  548. display: inline;
  549. float: left;
  550. font-size:14px !important;
  551. }
  552. .btn_close{
  553. width: auto !important;
  554. padding: 6px 20px !important;
  555. background-color: #001f2c !important;
  556. border-color: #001f2c !important;
  557. outline: none !important;
  558. }
  559. .pad-0{
  560. padding: 0!important;
  561. }
  562. .check_box{
  563. width:100%;
  564. float: left;
  565. }
  566. .d-none{
  567. display: none;
  568. }
  569. .form-group-check-box {
  570. text-align: left;
  571. display: block;
  572. float: left;
  573. width: 100%;
  574. padding: 0px 16px;
  575. margin: 7px 0px;
  576. }
  577. .form-group-check-box input {
  578. padding: 0;
  579. height: initial;
  580. width: initial;
  581. margin-bottom: 0;
  582. display: none;
  583. cursor: pointer;
  584. }
  585. .form-group-check-box label {
  586. position: relative;
  587. cursor: pointer;
  588. font-weight: normal !important;
  589. }
  590. .form-group-check-box label:before {
  591. content:'';
  592. -webkit-appearance: none;
  593. background-color: transparent;
  594. border: 2px solid #001f2c;
  595. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  596. padding: 10px;
  597. display: inline-block;
  598. position: relative;
  599. vertical-align: middle;
  600. cursor: pointer;
  601. margin-right: 5px;
  602. }
  603. .form-group-check-box input:checked + label:after {
  604. content: '';
  605. display: block;
  606. position: absolute;
  607. top: 18px;
  608. left: 9px;
  609. width: 6px;
  610. height: 14px;
  611. border: solid #001f2c;
  612. border-width: 0 2px 2px 0;
  613. transform: rotate(45deg);
  614. }
  615. .label_type{
  616. width:100%;
  617. float: left;
  618. padding: 6px 15px;
  619. text-align: left;
  620. font-weight: bold;
  621. }
  622. .radio_box p{
  623. width: 100%;
  624. float: left;
  625. margin: 0px;
  626. text-align: left;
  627. padding: 6px 15px;
  628. }
  629. .radio_box p [type="radio"]:checked,
  630. .radio_box p [type="radio"]:not(:checked) {
  631. position: absolute;
  632. left: -9999px;
  633. }
  634. .radio_box p [type="radio"]:checked + label,
  635. .radio_box p [type="radio"]:not(:checked) + label
  636. {
  637. position: relative;
  638. padding-left: 28px;
  639. cursor: pointer;
  640. line-height: 20px;
  641. display: inline-block;
  642. color: #333;
  643. font-weight: normal;
  644. }
  645. .radio_box p [type="radio"]:checked + label:before,
  646. .radio_box p [type="radio"]:not(:checked) + label:before {
  647. content: '';
  648. position: absolute;
  649. left: 0;
  650. top: 0;
  651. width: 18px;
  652. height: 18px;
  653. border: 1px solid #626262;
  654. border-radius: 100%;
  655. background: #fff;
  656. }
  657. .radio_box p [type="radio"]:checked + label:after,
  658. .radio_box p [type="radio"]:not(:checked) + label:after {
  659. content: '';
  660. width: 10px;
  661. height: 10px;
  662. background: #001f2c;
  663. position: absolute;
  664. top: 4px;
  665. left: 4px;
  666. border-radius: 100%;
  667. -webkit-transition: all 0.2s ease;
  668. transition: all 0.2s ease;
  669. }
  670. .radio_box p [type="radio"]:not(:checked) + label:after {
  671. opacity: 0;
  672. -webkit-transform: scale(0);
  673. transform: scale(0);
  674. }
  675. .radio_box p [type="radio"]:checked + label:after {
  676. opacity: 1;
  677. -webkit-transform: scale(1);
  678. transform: scale(1);
  679. }
  680. .right_tag{
  681. float: left;
  682. width: auto !important;
  683. }
  684. .sear_tag{
  685. width: 230px !important;
  686. }
  687. .select_tag{
  688. height: 38px;
  689. border: 1px solid #00344d !important;
  690. border-radius: 0px !important;
  691. color: #00344d;
  692. }
  693. .select_tag_label{
  694. text-align: right;
  695. padding: 10px 10px;
  696. color: #00344d;
  697. }
  698. .select_tag_label label{
  699. margin:0px !important;
  700. }