staticman.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. .staticman-comments {
  2. padding: 20px 0px 0px 0px;
  3. }
  4. .staticman-comments .comment-content{
  5. border-top: 1px solid #EEEEEE;
  6. padding: 4px 0px 30px 0px;
  7. }
  8. .staticman-comments .comment-content p {
  9. padding: 5px 0px 5px 0px;
  10. margin: 5px 58px 0px 58px;
  11. }
  12. .staticman-comments .textfield {
  13. width: 420px;
  14. max-width: 100%;
  15. padding: 0.5rem 0;
  16. width: 100%;
  17. }
  18. .staticman-comments input {
  19. border: 1px solid rgba(0,0,0,0.12);
  20. padding: 4px 5px;
  21. width: 100%;
  22. }
  23. .staticman-comments .g-recaptcha {
  24. padding: 0.5rem 0;
  25. }
  26. .staticman-comments textarea {
  27. border: 1px solid rgba(0,0,0,0.12);
  28. padding: 4px 5px;
  29. vertical-align: top;
  30. height: 10em;
  31. width: 100%;
  32. }
  33. .staticman-comments .comment-avatar {
  34. float:left;
  35. width: 48;
  36. height: 48;
  37. margin-right: 10px;
  38. }
  39. .staticman-comments .show-modal {
  40. overflow: hidden;
  41. position: relative;
  42. }
  43. .staticman-comments .show-modal:before {
  44. position: absolute;
  45. content: '';
  46. top: 0;
  47. left: 0;
  48. width: 100%;
  49. height: 100%;
  50. z-index: 999;
  51. background-color: rgba(0, 0, 0, 0.85);
  52. }
  53. .show-modal .modal {
  54. display: block;
  55. }
  56. .modal {
  57. display: none;
  58. position: fixed;
  59. width: 300px;
  60. top: 50%;
  61. left: 50%;
  62. margin-left: -150px;
  63. margin-top: -150px;
  64. min-height: 0;
  65. height: 30%;
  66. z-index: 9999;
  67. padding: 0.5rem;
  68. border: 1px solid rgba(0,0,0,0.25);
  69. background-color: rgba(220,220,220,0.9);
  70. height: 10em;
  71. }
  72. .form--loading:before {
  73. content: '';
  74. }
  75. .form--loading .form__spinner {
  76. display: block;
  77. }