Brak opisu

style.css 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /**
  2. * Settings page
  3. */
  4. #swpsmtp_settings_form input[type='text'],
  5. #swpsmtp_settings_form input[type='password'],
  6. #swpsmtp_settings_form input[type='email'],
  7. #swpsmtp_settings_form input[type='text']
  8. {
  9. width: 350px;
  10. }
  11. textarea#swpsmtp_message{
  12. width: 350px;
  13. }
  14. .swpsmtp-yellow-box{
  15. margin: 10px 0px;
  16. padding: 10px;
  17. background-color: #FFFFE0;
  18. border-color: #E6DB55;
  19. border-radius: 3px 3px 3px 3px;
  20. border-style: solid;
  21. border-width: 1px;
  22. }
  23. div.swpsmtp-tab-container, #swpsmtp-save-settings-notice {
  24. display: none;
  25. }
  26. #swpsmtp-spinner {
  27. float: none;
  28. vertical-align: top;
  29. }
  30. div.swpsmtp-tab-container {
  31. padding-top: 10px;
  32. }
  33. .swpsmtp-stars-container {
  34. text-align: center;
  35. margin-top: 10px;
  36. }
  37. .swpsmtp-stars-container span {
  38. vertical-align: text-top;
  39. color: #ffb900;
  40. }
  41. .swpsmtp-stars-container a {
  42. text-decoration: none;
  43. }
  44. .swpsmtp-settings-grid {
  45. display:inline-block;
  46. }
  47. .swpsmtp-settings-main-cont {
  48. width: 80%;
  49. }
  50. .swpsmtp-settings-sidebar-cont {
  51. width: 19%;
  52. float: right;
  53. padding-top: 10px;
  54. }
  55. div.swpsmtp-msg-cont {
  56. clear: both;
  57. margin-bottom: 10px;
  58. padding: 5px 10px;
  59. border-radius: 2px;
  60. background-color: #ffffe0;
  61. }
  62. div.swpsmtp-msg-cont.msg-error {
  63. border-left: 5px solid red;
  64. }
  65. div.swpsmtp-msg-cont.msg-success {
  66. border-left: 5px solid green;
  67. }
  68. #swpsmtp-debug-log-cont {
  69. display: none;
  70. }
  71. @media (max-width: 782px) {
  72. .swpsmtp-settings-grid {
  73. display: block;
  74. float: none;
  75. width: 100%;
  76. }
  77. }