My SMM panel
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

961 lines
15 KiB

  1. @use "vars";
  2. @font-face {
  3. font-family: "PatuaOne";
  4. src: url("../PatuaOne-Regular.ttf") format("opentype");
  5. font-style: normal;
  6. font-weight: normal;
  7. }
  8. html body {
  9. font-family: 'PatuaOne', 'Times New Roman';
  10. margin: 0;
  11. }
  12. section {
  13. position: relative;
  14. padding-top: 3em;
  15. padding-bottom: 3em;
  16. overflow: hidden;
  17. }
  18. button {
  19. font-family: 'PatuaOne', 'Times New Roman';
  20. }
  21. h1 {
  22. color: white;
  23. }
  24. h2 {
  25. color: vars.getColor("brand-orange");
  26. text-align: center;
  27. }
  28. h3 {
  29. color: vars.getColor("faded-text");
  30. // text-transform: uppercase;
  31. }
  32. ul {
  33. color: vars.getColor("faded-text");
  34. list-style-type: none;
  35. padding: 0;
  36. }
  37. input {
  38. border: 2px solid black;
  39. border-radius: 20px;
  40. padding: 4px;
  41. }
  42. .services-cards li {
  43. padding-bottom: 8px;
  44. &:before {
  45. width: 30px;
  46. height: 30px;
  47. content: url("../images/green-check.svg");
  48. display: inline;
  49. margin-right: 5px;
  50. // top: 30px;
  51. }
  52. }
  53. a {
  54. text-decoration: none;
  55. }
  56. nav {
  57. position: absolute;
  58. width: 100%;
  59. top: 10px;
  60. display: flex;
  61. flex-flow: row wrap;
  62. align-items: center;
  63. justify-content: space-between;
  64. // background-color: transparent;
  65. }
  66. nav h1 {
  67. margin: 4px 0 10px 6px;
  68. display: inline-block;
  69. }
  70. nav.info-page h1 {
  71. margin: 4px 0 10px 6px;
  72. display: inline-block;
  73. color: vars.getColor('brand-orange');
  74. }
  75. .formal-font {
  76. font-family: "FreeSans";
  77. }
  78. nav #logo {
  79. margin-right: 50px;
  80. }
  81. nav form {
  82. display: flex;
  83. flex-wrap: wrap;
  84. margin-right: 20px;
  85. }
  86. nav form div {
  87. margin: 0 10px;
  88. }
  89. nav form button {
  90. min-width: 5em;
  91. }
  92. nav form p {
  93. margin-top: 0;
  94. }
  95. nav form input,label {
  96. opacity: 0.7;
  97. }
  98. nav .nav-toggle {
  99. position: absolute;
  100. right: 10px;
  101. top: 5px;
  102. display: none;
  103. height: 45px;
  104. width: 45px;
  105. margin-left: auto;
  106. background: url("../images/menu-icon.svg");
  107. background-size: 100%;
  108. background-size: cover;
  109. color: white;
  110. }
  111. nav .nav-toggle.toggled {
  112. background: url("../images/cancel-icon2.svg");
  113. width: 25px;
  114. height: 25px;
  115. background-size: 100%;
  116. background-size: cover;
  117. top: 10px;
  118. right: 15px;
  119. color: white;
  120. }
  121. div.landing-hero {
  122. top: 0;
  123. height: 50em;
  124. background-color: #ff4e00;
  125. // background-image: linear-gradient(to right bottom, #ff4e00, #fc6200, #f87200, #f58100, #f18e00, #f19507, #f09c0f, #f0a317, #f3a620, #f6a927, #f8ad2e, #fbb034);
  126. background-image: linear-gradient(315deg, #ff4e00 0%, #ec9f05 74%);
  127. z-index: 0;
  128. }
  129. div.hero-filter {
  130. width: 100%;
  131. height: 100%;
  132. }
  133. div.hero-filter h2 {
  134. color: black;
  135. opacity: 0.7;
  136. max-width: 10em;
  137. font-size: 2.4em;
  138. position: absolute;
  139. top: 3em;
  140. margin-left: 5%;
  141. }
  142. div.hero-filter p {
  143. position: absolute;
  144. top: 12em;
  145. margin-left: 5%;
  146. font-size: 20px;
  147. width: 10em;
  148. opacity: 0.7;
  149. }
  150. div.errors {
  151. background-color: #ececec;
  152. color: vars.getColor("red-alert");
  153. border: 2px solid vars.getColor("red-alert");
  154. border-radius: 4px;
  155. min-height: 50px;
  156. position: absolute;
  157. left: 50%;
  158. margin-right: -50%;
  159. top: 100px;
  160. min-width: 30em;
  161. transform: translate(-50%, -50%);
  162. }
  163. .errors ul {
  164. margin: auto;
  165. }
  166. form.login {
  167. // font-weight: bold;
  168. color: white;
  169. }
  170. .cancel-icon {
  171. width: 30px;
  172. }
  173. form.login input {
  174. margin-left: 2px;
  175. color: white;
  176. background-color: transparent;
  177. border: 2px solid white;
  178. border-radius: 2px;
  179. outline-color: orange
  180. }
  181. form.login .login-btn {
  182. @include vars.special-button("medium-blue", "dark-blue");
  183. }
  184. .hero-filter .register-btn {
  185. @include vars.transparent-button;
  186. display: block;
  187. position: relative;
  188. width: 7em;
  189. top: 60%;
  190. margin-left: auto;
  191. margin-right: auto;
  192. }
  193. div.blue-background {
  194. background-image: url("../images/black-circle.svg");
  195. background-size: 10px;
  196. background-color: #0d324d;
  197. }
  198. section.about-us {
  199. padding: 70px 0;
  200. }
  201. section.about-us p {
  202. max-width: 600px;
  203. margin-left: auto;
  204. margin-right: auto;
  205. border-top: 2px solid vars.getColor("grey");
  206. border-bottom: 2px solid vars.getColor("grey");
  207. padding: 15px;
  208. background-color: #0d324d;
  209. color: white;
  210. }
  211. section.services-cards {
  212. // margin-bottom: 0;
  213. background-color: lightgrey;
  214. padding-bottom: 4em;
  215. background: linear-gradient(to bottom right, transparent 0%, transparent 50%, #e9e9e9 50%, vars.getColor("light-grey") 100%);
  216. }
  217. section.services-cards .cards{
  218. display: flex;
  219. flex-flow: wrap;
  220. margin-top: 2em;
  221. gap: 25px;
  222. justify-content: center;
  223. max-width: 1050px;
  224. margin-left: auto;
  225. margin-right: auto;
  226. text-align: center;
  227. }
  228. section.services-cards h2 {
  229. text-align: center;
  230. padding: 10px;
  231. margin-top: 0;
  232. padding-top: 30px;
  233. color: white;
  234. }
  235. section.services-cards .card {
  236. width: 280px;
  237. height: 350px;
  238. padding: 18px 9px;
  239. border-radius: 4px;
  240. background: white;
  241. box-shadow: 7px 10px 8px rgb(156 166 175 / 22%);
  242. transition: transform 0.2s;
  243. &:hover {
  244. transform: translateY(-20px);
  245. }
  246. }
  247. section.services-cards img {
  248. width: 50px;
  249. height: 50px;
  250. }
  251. section.services-cards button {
  252. @include vars.brand-button("orange");
  253. }
  254. section.features-info {
  255. // height: fit-content;
  256. height: 60em;
  257. background: radial-gradient(ellipse at left, #fff, vars.getColor("light-grey") 80%);
  258. }
  259. .circle-prop {
  260. height: 100%;
  261. overflow: hidden;
  262. width: 100%;
  263. position: relative;
  264. // transform: translateX(-10em);
  265. }
  266. .circle-prop svg {
  267. width: 50%;
  268. }
  269. .features-info img {
  270. width: 600px;
  271. position: absolute;
  272. top: 15%;
  273. right: 4%;
  274. }
  275. div.info-cards {
  276. position: absolute;
  277. top: 10em;
  278. margin-left: 20%;
  279. width: 70%;
  280. }
  281. .info-card {
  282. margin-bottom: 40px;
  283. &:nth-of-type(2) {
  284. margin-left: 13%;
  285. }
  286. &:nth-of-type(3) {
  287. margin-left: 10%;
  288. }
  289. &:nth-of-type(4) {
  290. margin-left: 5%;
  291. }
  292. p {
  293. max-width: 20em;
  294. background: white;
  295. padding: 5px;
  296. border-radius: 4px;
  297. text-align: center;
  298. color: vars.getColor("faded-text2");
  299. // border: 2px solid vars.getColor("medium-orange");
  300. @include vars.hovering;
  301. }
  302. }
  303. section.panel-infos {
  304. height: 40em;
  305. margin-top: 5em;
  306. margin-bottom: 5em;
  307. }
  308. section.panel-infos img.panel-preview {
  309. margin-top: 4em;
  310. height: 80%;
  311. position: absolute;
  312. right: 50%;
  313. }
  314. .panel-info {
  315. left: 50%;
  316. width: 50%;
  317. margin-left: auto;
  318. margin-top: 4em;
  319. }
  320. .panel-info img {
  321. width: 50px;
  322. height: 50px;
  323. }
  324. .panel-info p {
  325. color: vars.getColor("faded-text2");
  326. }
  327. section.benefits-info div {
  328. margin: 1em auto;
  329. padding: 1em 1em;
  330. border-top: 2px solid vars.getColor("faded-text2");
  331. border-bottom: 2px solid vars.getColor("faded-text2");
  332. max-width: 40em;
  333. color: vars.getColor("faded-text");
  334. }
  335. .benefits-info h2 {
  336. margin-bottom: 2em;
  337. }
  338. section.faq-info {
  339. margin-bottom: 6em;
  340. margin-top: 3em;
  341. min-height: 30em;
  342. }
  343. .faq-info h2 {
  344. margin-bottom: 2em;
  345. }
  346. section.faq-info .collapsibles {
  347. display: flex;
  348. flex-flow: wrap;
  349. gap: 2em;
  350. justify-content: space-around;
  351. max-width: 65em;
  352. width: fit-content;
  353. margin-left: auto;
  354. margin-right: auto;
  355. align-text: center;
  356. }
  357. .faq-info .collapsible {
  358. text-align: center;
  359. width: 20em;
  360. &:not(.active) .content {
  361. display: none;
  362. }
  363. }
  364. .collapsible button {
  365. width: 95%;
  366. display: block;
  367. margin-right: auto;
  368. height: 2.5em;
  369. border: 2px solid vars.getColor("brand-orange");
  370. @include vars.button("light-grey");
  371. font-size: 17px;
  372. // font-weight: bold;
  373. }
  374. .collapsible button:after {
  375. content: '\02795'; /* Unicode character for "plus" sign (+) */
  376. font-size: 13px;
  377. color: white;
  378. float: right;
  379. margin-left: 5px;
  380. }
  381. .collapsible .content {
  382. // background-color: vars.getColor("faded-text2");
  383. border: 2px solid black;
  384. border-radius: 4px;
  385. padding: 4px;
  386. // transition: all 0.2s;
  387. // height: 1px;
  388. }
  389. footer {
  390. height: 6em;
  391. background-color: vars.getColor("dark-grey");
  392. padding: 20px;
  393. color: vars.getColor("faded-text2");
  394. }
  395. footer .foot-links {
  396. width: 20em;
  397. margin: 2em auto;
  398. text-align: center;
  399. }
  400. footer a {
  401. margin: 0 8px;
  402. color: vars.getColor("faded-text2");
  403. &:hover {
  404. color: vars.getColor("faded-text");
  405. }
  406. }
  407. .hidden {
  408. display: none;
  409. }
  410. .loading-icon {
  411. display: block;
  412. width: 50px;
  413. height: 50px;
  414. margin: auto;
  415. }
  416. .register-area p {
  417. text-align: center;
  418. }
  419. .register-area .loading-icon {
  420. margin-top: 100px;
  421. }
  422. div.register-area {
  423. overflow: hidden;
  424. height: 0px;
  425. width: 100%;
  426. z-index: 1;
  427. @include vars.hovering3;
  428. margin-bottom: 2em;
  429. position: fixed;
  430. border-radius: 0;
  431. padding: 0;
  432. opacity: 0;
  433. transition: all 0.2s;
  434. background: white;
  435. h3 {
  436. text-align: center;
  437. }
  438. label,input {
  439. color: black;
  440. display: block;
  441. border-color: black;
  442. width: 95%;
  443. }
  444. div {
  445. margin-top: 20px;
  446. margin-bottom: 20px;
  447. width: 100%;
  448. }
  449. form {
  450. width: 160px;
  451. margin: 20px auto;
  452. }
  453. .submit-btn {
  454. width: 100%;
  455. background-color: #3bb78f;
  456. @include vars.special-button("light-green", "dark-green");
  457. }
  458. .cancel-button {
  459. width: 20px;
  460. height: 20px;
  461. background: url("../images/close-icon-black.svg");
  462. background-size: cover;
  463. position: absolute;
  464. top: 20px;
  465. right: 20px;
  466. }
  467. }
  468. section.features-info {
  469. min-height: 70em;
  470. }
  471. div.register-area.active {
  472. min-height: 400px;
  473. opacity: 1;
  474. }
  475. .medium-icon {
  476. width: 50px;
  477. height: 50px;
  478. margin-left: auto;
  479. margin-right: auto;
  480. display: block;
  481. top: 50px;
  482. }
  483. // Make small screens more usable
  484. @media (max-width: 720px) {
  485. nav { display: block; }
  486. nav form {
  487. // display: none;
  488. width: 190px;
  489. margin-left: auto;
  490. margin-right: auto;
  491. align-items: center;
  492. margin-top: 5em;
  493. opacity: 0;
  494. transition: transform 0.3s;
  495. transform: translateY(-50px);
  496. }
  497. nav form.active {
  498. display: block;
  499. transform: translateX(0%);
  500. opacity: 1;
  501. // background: white;
  502. // color: black;
  503. }
  504. nav form div {
  505. margin: 10px auto;
  506. }
  507. nav div label,input {
  508. display: block;
  509. }
  510. nav .nav-toggle {
  511. display: block;
  512. }
  513. div.register-area.active {
  514. display: initial;
  515. }
  516. div.register-area h1 {
  517. font-size: 1.5rem;
  518. display: inline-block;
  519. color: vars.getColor("brand-orange");
  520. }
  521. div.register-area h3 {
  522. text-align: center;
  523. }
  524. div.register-area .login {
  525. color: vars.getColor("brand-orange");
  526. display: block;
  527. margin-left: auto;
  528. margin-right: auto;
  529. // margin-top: 1em;
  530. width: 10em;
  531. // top: 40px;
  532. // position: absolute;
  533. }
  534. div.register-area .login input {
  535. border: 2px solid black;
  536. border-color: black;
  537. color: black;
  538. }
  539. div.register-area button {
  540. margin-top: 1em;
  541. width: 6em;
  542. }
  543. div.register-area div {
  544. margin-top: 10px;
  545. margin-bottom: 5px;
  546. margin-left: auto;
  547. margin-right: auto;
  548. }
  549. .landing-hero div.hero-filter h2 {
  550. top: 4em;
  551. }
  552. .landing-hero div.hero-filter p {
  553. top: 15em;
  554. }
  555. .landing-hero div.hero-filter .register-btn {
  556. top: 75%;
  557. }
  558. }
  559. .info-heading {
  560. text-align: center;
  561. margin-top: 3em;
  562. margin-left: auto;
  563. margin-right: auto;
  564. max-width: 35em;
  565. padding: 3em;
  566. height: 30em;
  567. button {
  568. display: block;
  569. margin: 3em auto;
  570. width: 6em;
  571. @include vars.special-button("light-green", "dark-green");
  572. }
  573. }
  574. main.panel {
  575. min-height: 750px;
  576. height: 90vh;
  577. // max-height: 100vh;
  578. background-image: linear-gradient(315deg, #ff4e00 0%, #ec9f05 74%);
  579. }
  580. #panel {
  581. top: 50px;
  582. padding: 10px;
  583. margin: auto;
  584. position: relative;
  585. max-width: 450px;
  586. height: 600px;
  587. display: flex;
  588. gap: 10px;
  589. }
  590. #sidebar {
  591. position: relative;
  592. width: 35px;
  593. height: 50%;
  594. color: white;
  595. background: transparent;
  596. display: block;
  597. flex-shrink: 0;
  598. a {
  599. display: block;
  600. margin: 20px 0;
  601. }
  602. svg {
  603. width: 35px;
  604. height: 35px;
  605. color: white;
  606. }
  607. a.selected svg {
  608. color: vars.getColor("brand-orange");
  609. }
  610. }
  611. #panel #main {
  612. height: 100%;
  613. background: white;
  614. width: 100%;
  615. flex-shrink: 1;
  616. margin-left: auto;
  617. position: relative;
  618. // opacity: 1;
  619. @include vars.hovering3;
  620. transition: opacity 0.5s ease;
  621. vertical-align: middle;
  622. overflow: scroll;
  623. // text-align: center;
  624. section {
  625. padding: 5px;
  626. border-radius: 4px;
  627. min-height: 3em;
  628. margin-bottom: 1em;
  629. }
  630. h4 {
  631. margin: 4px;
  632. color: vars.getColor("dark-grey");
  633. }
  634. p {
  635. margin: 0;
  636. }
  637. .icon {
  638. width: 25px;
  639. margin: 10px;
  640. }
  641. .welcome-pane {
  642. text-align: center;
  643. }
  644. .credits-pane {
  645. border: 3px solid vars.getColor("alt-blue-medium");
  646. background: vars.getColor("alt-blue-light");
  647. > * {
  648. display: inline;
  649. vertical-align: middle;
  650. }
  651. }
  652. .alerts-pane {
  653. border: 3px solid vars.getColor("grey");
  654. padding: 1em;
  655. }
  656. }
  657. .fade-enter-from, .fade-leave-to {
  658. opacity: 0;
  659. }
  660. .recent-pane, .history-pane{
  661. table {
  662. border-spacing: 4px;
  663. margin: auto;
  664. text-align: center;
  665. }
  666. th {
  667. font-weight: normal;
  668. color: vars.getColor("light2-grey");
  669. }
  670. tr {
  671. border-bottom: 3px solid black;
  672. }
  673. td {
  674. border-bottom: 2px solid vars.getColor("grey");
  675. // color: vars.getColor("light3-grey");
  676. // font-size: 1rem;
  677. font-size: 0.8rem;
  678. }
  679. td.completed span {
  680. background: vars.getColor('green');
  681. color: vars.darkenColor('green');
  682. border-radius: 4px;
  683. padding: 2px;
  684. }
  685. td.processing {
  686. color: vars.getColor('light-blue');
  687. }
  688. td.canceled {
  689. color: vars.getColor('red-alert');
  690. }
  691. }
  692. .pending-pane {
  693. .pending-heading {
  694. position: relative;
  695. border-bottom: 1px solid vars.getColor('light2-grey');
  696. // background-color: vars.getColor('light-grey');
  697. &:hover {
  698. color: vars.darkenColor('text-blue-medium');
  699. }
  700. }
  701. .pending-content {
  702. color: grey;
  703. height: 0;
  704. overflow: hidden;
  705. transition: all 0.2s;
  706. }
  707. .selected .pending-content {
  708. height: fit-content;
  709. }
  710. li {
  711. margin: 10px 0;
  712. display: inline-block;
  713. width: 15em;
  714. }
  715. img {
  716. // border: 2px solid vars.getColor('light2-grey');
  717. padding: 4px;
  718. // border-radius: 50%;
  719. margin-top: 5px;
  720. width: 25px;
  721. display: inline-block;
  722. margin-bottom: 3px;
  723. margin-left: 2px;
  724. position: absolute;
  725. transition: all 0.2s;
  726. }
  727. .selected img {
  728. transform: rotate(180deg);
  729. }
  730. }
  731. .history-pane {
  732. overflow: visible;
  733. transition: all 0.2s;
  734. .nav-btn {
  735. width: 1.5em;
  736. transform: translateY(1.5em);
  737. }
  738. .nav-btn.right {
  739. bottom: 0px;
  740. right: 1em;
  741. position: absolute;
  742. display: block;
  743. margin-left: auto;
  744. }
  745. .nav-btn.left {
  746. bottom: 0px;
  747. left: 1em;
  748. position: absolute;
  749. display: block;
  750. margin-right: auto;
  751. }
  752. .nav-legend {
  753. color: grey;
  754. transform: translateX(-1.5em);
  755. text-align: center;
  756. position: absolute;
  757. width: 3em;
  758. left: 50%;
  759. }
  760. }
  761. .actions {
  762. // height: 2em;
  763. .new-order {
  764. background-color: vars.getColor('light-blue');
  765. }
  766. }
  767. .logout-pane {
  768. margin-top: 25%;
  769. text-align: center;
  770. height: 10em;
  771. a {
  772. display: block;
  773. // vertical-align: center;
  774. margin: auto;
  775. margin-top: 2em;
  776. height: 1.3em;
  777. width: 5em;
  778. @include vars.inverting-button(black, white);
  779. }
  780. }
  781. .settings-page {
  782. h3 {
  783. text-align: center;
  784. }
  785. h5 {
  786. display: inline-block;
  787. margin-right: 2em;
  788. margin-top: 0;
  789. margin-bottom: 0.5em;
  790. color: vars.getColor('brand-orange');
  791. }
  792. input {
  793. display: block;
  794. margin-bottom: 1em;
  795. right: 2px;
  796. position: relative;
  797. }
  798. button {
  799. &>*{vertical-align: middle;}
  800. margin-right: 10px;
  801. display: inline-block;
  802. @include vars.inverting-button(vars.getColor('text-blue-medium'), white);
  803. }
  804. .loading-icon {
  805. width: 1.5em;
  806. height: 1.5em;
  807. display: none;
  808. color: white;
  809. }
  810. .loading .loading-icon {
  811. display: inline;
  812. }
  813. .completed span {
  814. color: vars.getColor('green');
  815. }
  816. .error span {
  817. color: vars.getColor('red-alert');
  818. }
  819. }