main.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. .module-subscribe body{
  2. background-color: #f5f5f5;
  3. }
  4. .module-subscribe .subscribe-form,.module-subscribe .subscribe-validation{
  5. background-color: #ffffff;
  6. box-shadow: 0 2px 3px 0px rgba(0,0,0,0.1);
  7. padding: 15px;
  8. }
  9. .module-subscribe .subscribe-form > img{
  10. width: 100px;
  11. }
  12. .module-subscribe .subscribe-validation {
  13. transform: translateX(200px);
  14. opacity: 0;
  15. transition: all 0.2s ease-in-out;
  16. }
  17. .module-subscribe .subscribe-validation > img{
  18. width: 200px;
  19. }
  20. .module-subscribe .subscribe-validation > img.animate{
  21. animation: pop 0.5s ease-in-out;
  22. }
  23. .module-subscribe .subscribe-validation.go-in{
  24. transform: translateX(0);
  25. opacity: 1;
  26. }
  27. .subscribe-captcha-block{
  28. font-family: 'subscribe-captcha';
  29. }
  30. .subscribe-captcha-block svg{
  31. vertical-align: top;
  32. }
  33. .subscribe-captcha-block i{
  34. font-style: normal;
  35. }
  36. .subscribe-captcha-block .boell::before{
  37. content : 'un';
  38. }
  39. .subscribe-captcha-block .lecoq::before{
  40. content : '+';
  41. }
  42. .subscribe-captcha-block .narboni::before{
  43. content : 'moins';
  44. }
  45. .subscribe-captcha-block .carruesco::before{
  46. content : 'cinq';
  47. }
  48. @font-face {
  49. font-family: 'subscribe-captcha';
  50. src:url('../font/captcha-webfont.woff2') format('woff2'),
  51. url('../font/captcha-webfont.woff') format('woff');
  52. font-weight: normal;
  53. font-style: normal;
  54. }
  55. @keyframes pop{
  56. 0% {opacity: 0.5}
  57. 50% {transform: scale(1.2);}
  58. 100% {opacity: 1}
  59. }
  60. /* CARD PASSWORD RULES */
  61. .subscribe-password-card {
  62. min-width: 340px;
  63. font-style: normal;
  64. font-size: 0.9rem;
  65. }
  66. .subscribe-password-card .card-top {
  67. padding: .5rem;
  68. }
  69. .subscribe-password-card .card-top h5 {
  70. margin-bottom: 0;
  71. font-size: 1.15rem;
  72. }
  73. .subscribe-password-card .card-content {
  74. padding: 0 .25rem;
  75. }