Dashboard sipadu mbip
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

inline.css 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /* The following styles are here just to make the "Massive Inline Editing" sample look nice. */
  2. /* A workaround to show Arial Black font in Firefox. */
  3. @font-face {
  4. font-family: 'arial-black';
  5. src: local('Arial Black');
  6. }
  7. #columns *[contenteditable="true"], #header *[contenteditable="true"] {
  8. padding: 10px;
  9. }
  10. #header {
  11. overflow: hidden;
  12. padding: 0 0 30px;
  13. border-bottom: 5px solid #05B2D2;
  14. position: relative;
  15. color: #333;
  16. background-color: #f9f9f9;
  17. }
  18. #headerLeft,
  19. #headerRight {
  20. width: 49%;
  21. overflow: hidden;
  22. }
  23. #headerLeft {
  24. float: left;
  25. padding: 10px 1px 1px;
  26. }
  27. #headerLeft h2,
  28. #headerLeft h3 {
  29. text-align: right;
  30. margin: 0;
  31. overflow: hidden;
  32. font-weight: normal;
  33. }
  34. #headerLeft h2 {
  35. font-family: "Arial Black", arial-black;
  36. font-size: 3.6em;
  37. line-height: 1.1;
  38. text-transform: uppercase;
  39. }
  40. #headerLeft h3 {
  41. font-size: 1.9em;
  42. line-height: 1.1;
  43. margin: .2em 0 0;
  44. color: #666;
  45. }
  46. #headerRight {
  47. float: right;
  48. padding: 1px;
  49. }
  50. #headerRight p {
  51. line-height: 1.8;
  52. text-align: justify;
  53. margin: 0;
  54. }
  55. #headerRight p + p {
  56. margin-top: 20px;
  57. }
  58. #headerRight > div {
  59. padding: 20px;
  60. margin: 0 0 0 30px;
  61. font-size: 1.2em;
  62. color: #666;
  63. }
  64. #columns {
  65. color: #333;
  66. overflow: hidden;
  67. padding: 20px 0;
  68. font-size: 0.9em;
  69. background-color: #f9f9f9;
  70. }
  71. #columns > div {
  72. float: left;
  73. width: 33.3%;
  74. }
  75. #columns #column1 > div {
  76. margin-left: 1px;
  77. }
  78. #columns #column3 > div {
  79. margin-right: 1px;
  80. }
  81. #columns > div > div {
  82. margin: 0px 10px;
  83. padding: 10px 20px;
  84. }
  85. #columns blockquote {
  86. margin-left: 15px;
  87. }