style.css 740 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. body {
  2. background-color: #efefef;
  3. font-family: Arial;
  4. font-size: 16px;
  5. margin: 0;
  6. padding: 0;
  7. }
  8. .header {
  9. background-color: #111;
  10. width: 100%;
  11. color: #fff;
  12. padding: 10px 0;
  13. }
  14. .header .center {
  15. width: 550px;
  16. }
  17. #status { font-weight :bold; }
  18. #status.offline { color: #E61212; }
  19. #status.online { color: #3CE01B; }
  20. .center {
  21. margin-left: auto;
  22. margin-right: auto;
  23. }
  24. #content {
  25. width: 500px;
  26. margin-top: 30px;
  27. padding: 10px 25px;
  28. border: 1px solid #ccc;
  29. border-radius: 4px;
  30. background-color: #fff;
  31. line-height: 40px;
  32. }
  33. .right {
  34. float: right;
  35. }
  36. [class^="icon-"] {
  37. display: inline-block !important;
  38. width: 23px !important;
  39. /*margin-right: 7px;*/
  40. }