admin-notices.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .nf-admin-notice {
  2. background: #fff;
  3. border-color: #ED494D;
  4. border-top: 4px;
  5. display: block;
  6. min-height: 68px;
  7. padding: 10px 40px 10px 145px;
  8. position: relative;
  9. }
  10. .nf-admin-notice a {
  11. color: #ED494D;
  12. }
  13. .nf-notice-logo {
  14. clear: both;
  15. content: "";
  16. display: block;
  17. background-image: url("../img/nf-logo-vert.png");
  18. background-size: 125px 83px;
  19. background-repeat: no-repeat;
  20. background-position: 0 45%;
  21. width: 125px;
  22. position: absolute;
  23. top: 0;
  24. bottom: 0;
  25. left: 5px;
  26. }
  27. .nf-admin-notice > .dashicons {
  28. color: #424242;
  29. position: absolute;
  30. right: 20px;
  31. top: 40%;
  32. }
  33. .nf-notice-title {
  34. font-size: 24px;
  35. }
  36. .nf-notice-body {
  37. font-weight: normal;
  38. margin: 5px 0;
  39. }
  40. .nf-notice-body:after {
  41. clear: both;
  42. content: "";
  43. display: block;
  44. }
  45. .nf-notice-body li {
  46. float: left;
  47. margin-right: 20px;
  48. }
  49. .nf-notice-body .dashicons {
  50. font-size: 17px;
  51. }
  52. .nf-red {
  53. color: #ED494D;
  54. }
  55. .nf-admin-error {
  56. border-left: 5px solid #ED494D;
  57. }
  58. .nf-admin-error .nf-notice-title {
  59. color: #ED494D;
  60. }
  61. .nf-admin-error .nf-notice-title,
  62. .nf-admin-error .nf-notice-body {
  63. margin: 10px 0 10px 130px;
  64. }