display.css (587B)
1 .display_alerts { 2 display: block; 3 width: 100%; 4 margin-bottom: 20px; 5 } 6 7 .display_alerts > .alert { 8 display: block; 9 width: 100%; 10 margin-bottom: 1px; 11 color: #fff; 12 background: #888; 13 padding: 20px; 14 font-size: 16px; 15 text-align: center; 16 } 17 18 .display_alerts > .alert a { 19 color: #fff !important; 20 } 21 22 .display_alerts > .alert.success { 23 background: #2ecc71; 24 } 25 26 .display_alerts > .alert.error { 27 background: #e74c3c; 28 } 29 30 .display_alerts > .alert.warning { 31 background: #f39c12; 32 } 33 34 .display_alerts > .alert.info { 35 background: #3498db; 36 }