Advertisement
Guest User

Untitled

a guest
Apr 25th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. // HTML
  2.  
  3. <div id="site_alert">
  4. <div class="flex_row">
  5. <p id="alert_header"><i id="alert_icon" class="fas fa-exclamation-circle"></i>Achtung:</p>
  6. <p id="alert_txt">Veränderungen, Updates, Informationen u.v.m. <a href="#">hier</a> nachlesen</p>
  7. </div>
  8. </div>
  9.  
  10.  
  11.  
  12. // CSS
  13.  
  14. #site_alert {
  15. background: linear-gradient(to bottom, #d80000 0%,#d80000 50%,#b80000 100%);
  16. width: 560px;
  17. display: flex;
  18. margin: 10px auto 5px auto;
  19. /*margin: 0px auto 20px auto;*/
  20. min-height: 30px;
  21. height: auto;
  22. border-radius: 3px;
  23. text-align: center;
  24. border: 1px solid #ccc;
  25. border-bottom-width: 2px;
  26. }
  27.  
  28. #alert_icon {
  29. color: #fff;
  30. font-size: 14px;
  31. margin: 0px 4px 0px 6px;
  32. text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  33. }
  34.  
  35. #alert_header {
  36. font-weight: bold;
  37. color: #fff;
  38. font-size: 13px;
  39. display: flex;
  40. align-items: center;
  41. text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  42. }
  43.  
  44. #alert_txt {
  45. color: #fff;
  46. margin: 0 6px 0 0;
  47. padding: 5px;
  48. margin: auto;
  49. font-size: 13px;
  50. text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  51. }
  52.  
  53. #alert_txt > a {
  54. cursor: pointer;
  55. color: #fff;
  56. }
  57.  
  58. @media screen and (max-width:980px) {
  59. #box {
  60. margin-left: 1px;
  61. }
  62. #box_done {
  63. margin-left: 1px;
  64. }
  65. #site_alert {
  66. margin-left: 1px;
  67. }
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement