notifications.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /**
  2. * Copyright 2012 Tsvetan Tsvetkov
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. *
  16. * Author: Tsvetan Tsvetkov (tsekach@gmail.com)
  17. */
  18. body {
  19. font: 16px/26px Helvetica, Helvetica Neue, Arial;
  20. }
  21. .warningMsg {
  22. background: #ff4500 url("http://cdn1.iconfinder.com/data/icons/crystalproject/128x128/apps/alert.png") no-repeat 10px center;
  23. border: 5px solid #8b0000;
  24. border-radius: 10px;
  25. padding: 10px 10px 10px 150px;
  26. }
  27. .notificationLevel {
  28. color: white;
  29. display: block;
  30. padding: 10px;
  31. text-align: center;
  32. text-decoration: none;
  33. }
  34. .notificationLevel.default {
  35. background: orange;
  36. }
  37. .notificationLevel.allowed {
  38. background-color: green;
  39. }
  40. .notificationLevel.denied {
  41. background-color: red;
  42. }
  43. .step {
  44. margin: 10px;
  45. }
  46. .step header {
  47. border-bottom: 1px solid #ff4500;
  48. font-size: 1.4em;
  49. text-align: center;
  50. }
  51. .step .block {
  52. background: rgba(255, 69, 0, 0.5);
  53. display: inline-block;
  54. height: 100px;
  55. min-width: 100px;
  56. vertical-align: top;
  57. }
  58. .step .block label {
  59. display: block;
  60. }