install.css 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /*
  2. Copyright (c) 2010, Yahoo! Inc. All rights reserved.
  3. Code licensed under the BSD License:
  4. http://developer.yahoo.com/yui/license.html
  5. version: 2.8.2r1
  6. Reset
  7. */
  8. html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var,optgroup{font-style:inherit;font-weight:inherit;}del,ins{text-decoration:none;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:baseline;}sub{vertical-align:baseline;}legend{color:#000;}input,button,textarea,select,optgroup,option{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;}input,button,textarea,select{*font-size:100%;}
  9. html, body {
  10. background-color: #EFEFEF;
  11. }
  12. body {
  13. font-size: 14px;
  14. font-family: "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
  15. color: #313131;
  16. }
  17. a {
  18. color: #08C;
  19. text-decoration: none;
  20. }
  21. a:hover {
  22. text-decoration: underline;
  23. }
  24. strong {
  25. font-weight: bold;
  26. }
  27. em {
  28. font-style: italic;
  29. }
  30. h1, h2, h3 {
  31. font-family: Georgia, "Times New Roman", Times, serif;
  32. color: #404040;
  33. }
  34. h1 {
  35. font-size: 45px;
  36. padding-bottom: 30px;
  37. }
  38. h2 {
  39. font-weight: bold;
  40. color: #FFFFFF;
  41. /* Font is reset to sans-serif (like body) */
  42. font-family: "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
  43. margin-bottom: 10px;
  44. background-color: #aacd4e;
  45. padding: 2px 4px;
  46. display: inline-block;
  47. text-transform: uppercase;
  48. }
  49. p {
  50. line-height: 20px;
  51. padding-bottom: 20px;
  52. }
  53. ul a {
  54. background: url(../images/blue-arrow.png) no-repeat right 6px;
  55. padding-right: 10px;
  56. }
  57. ul, ol {
  58. padding-left: 20px;
  59. }
  60. li {
  61. padding-bottom: 18px;
  62. }
  63. ol li {
  64. list-style-type: decimal;
  65. }
  66. ul li {
  67. list-style-type: none;
  68. }
  69. #symfony-header {
  70. position: relative;
  71. padding: 30px 30px 20px 30px;
  72. }
  73. #symfony-wrapper {
  74. width: 970px;
  75. margin: 0 auto;
  76. padding-top: 50px;
  77. }
  78. #symfony-content {
  79. background-color: white;
  80. border: 1px solid #DFDFDF;
  81. padding: 50px;
  82. -moz-border-radius: 16px;
  83. -webkit-border-radius: 16px;
  84. border-radius: 16px;
  85. margin-bottom: 5px;
  86. }
  87. .symfony-blocks-install {
  88. overflow: hidden;
  89. }
  90. .symfony-blocks-install .symfony-block-logo {
  91. float: left;
  92. width: 358px;
  93. }
  94. .symfony-blocks-install .symfony-block-content {
  95. float: left;
  96. width: 510px;
  97. }
  98. .symfony-install-continue {
  99. font-size: 0.95em;
  100. padding-left: 0;
  101. }
  102. .symfony-install-continue li {
  103. padding-bottom: 10px;
  104. }
  105. .version {
  106. text-align: right;
  107. font-size: 10px;
  108. margin-right: 20px;
  109. }
  110. .ok {
  111. color: #fff;
  112. font-family: "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
  113. background-color: #6d6;
  114. padding: 10px;
  115. margin-bottom: 20px;
  116. }
  117. .ko {
  118. background-color: #d66;
  119. }