A tumblelog CMS built on AJAX, PHP and MySQL.

style-codice.css 6.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  1. /* Estructura */
  2. *{ padding:0; margin:0;}
  3. body {
  4. background-color: #F7F7F7;
  5. color: #333333;
  6. font-family: "Trebuchet MS", Vendana, Arial, sans-serif;
  7. font-size: 10pt;
  8. font-weight: normal;
  9. margin: auto;
  10. }
  11. #div-process {
  12. padding-left: 22px;
  13. font: normal 14.5px/17px georgia, "times new roman", serif;
  14. background: url(../../images/proceso.gif) no-repeat 0% 10%;
  15. float: right;
  16. height: 20px;
  17. width: 150px;
  18. border: 1px solid #000066;
  19. background-color:#FFFFCC;
  20. color:#011940;
  21. }
  22. #titulo {
  23. background-color: #FcFcFc;
  24. border:1px solid #FcFcFc;
  25. margin-top: 0;
  26. padding-top: 0;
  27. width: 100%;
  28. }
  29. #contenido {
  30. background-color: #F7F7F7;
  31. border:1px solid #F7F7F7;
  32. }
  33. .piccola{ width:30%; margin: 0 auto;}
  34. .center{ width:60%; margin: 0 auto;}
  35. .right{ width:40%; float:right;}
  36. .left{ width: 60%; float:left; }
  37. .ventana{ margin:10px; padding:0 0 4px 0; border:1px solid #999; background-color:#DEDEDE;}
  38. .titulo{ background-color:#336699; color:#FFFFFF; font-weight:bold; text-align:center; border-bottom:2px solid #FFF;}
  39. #contenido h3 {
  40. font: normal 17.5px/17px georgia, "times new roman", serif;
  41. margin-bottom: 0;
  42. padding-bottom: 0;
  43. }
  44. #pie {
  45. clear: both;
  46. color: #808080;
  47. background: #FFF;
  48. font-size: 0.8em;
  49. text-align: right;
  50. padding: 9px 10px 9px 0;
  51. margin: 10px 5px 10px 5px;
  52. border: 1px solid #ccc;
  53. width:60%;
  54. margin: 0 auto;
  55. margin-top:50px;
  56. text-align:center;
  57. }
  58. #pie a {
  59. text-decoration: underline;
  60. color: #3A6794;
  61. }
  62. #pie a:hover {
  63. color: #000;
  64. }
  65. /* Mensajes para el usuario */
  66. .error {
  67. width:80%;
  68. background: #FFF7F2 url('../../images/error.png') 15px center no-repeat;
  69. border-top: 2px solid #CC0000;
  70. border-bottom: 2px solid #CC0000;
  71. margin: 0 auto;
  72. padding: 5px 20px 5px 45px;
  73. }
  74. .exito {
  75. width:80%;
  76. background: #F4FBF5 url('../../images/information.png') 15px center no-repeat;
  77. border-top: 2px solid #006600;
  78. border-bottom: 2px solid #006600;
  79. margin: 0 auto;
  80. padding: 5px 20px 5px 45px;
  81. }
  82. .info {
  83. width:80%;
  84. background: #FFF6BF url('../../images/icon_info.gif') 15px center no-repeat;
  85. border-top: 2px solid #FFD324;
  86. border-bottom: 2px solid #FFD324;
  87. margin: 0 auto;
  88. padding: 5px 20px 5px 45px;
  89. }
  90. /* Formularios */
  91. #formulario {
  92. margin: 30px;
  93. padding: 0px;
  94. border: 0px;
  95. }
  96. #formulario fieldset{ border: none;}
  97. #formulario label{ width:100px; text-align:left;}
  98. label.required { padding-left: 22px; background: url(../../images/required.gif) no-repeat 0% 50%; }
  99. label.problem { padding-left: 22px; background: url(../../images/caution.gif) no-repeat 0% 50%; }
  100. label.completed { padding-left: 22px; background: url(../../images/complete.gif) no-repeat 0% 50%; }
  101. #formulario p{margin: 8px 0 ;}
  102. .input-text{ width: 100%; border: 1px solid #7591B5; background-color:#fff; margin: 1px; padding: 3px; font: 14px Verdana, Arial, Helvetica, sans-serif;}
  103. .input-corto{ width: 200px; border: 1px solid #7591B5; background-color:#fff; padding: 1px 0;}
  104. .check { border: 1px solid #7591B5; background-color:#fff; }
  105. input:hover {
  106. background: #f5f5f5;
  107. color: #000;
  108. }
  109. input.submit
  110. {
  111. width: 200px;
  112. margin-top: 0.5em;
  113. margin-bottom: 0.5em;
  114. text-align: center;
  115. cursor:pointer;
  116. border-bottom:solid 2px #000;
  117. border-right:solid 2px #000;
  118. border-top:solid 1px #336699;
  119. border-left:solid 1px #336699;
  120. background-color:#002255;
  121. color:#fff;
  122. font-size:105%;
  123. text-decoration:none;
  124. padding:.4em;
  125. font-weight:bold;
  126. }
  127. input.submit:hover
  128. {
  129. text-decoration:none;
  130. background-color:#003366;
  131. color:#fff;
  132. }
  133. .submit_naranja {
  134. width: 200px;
  135. margin-top: 0.5em;
  136. margin-bottom: 0.5em;
  137. text-align: center;
  138. cursor:pointer;
  139. border-bottom:solid 2px #E55C00;
  140. border-right:solid 2px #E55C00;
  141. border-top:solid 1px #FF751A;
  142. border-left:solid 1px #FF751A;
  143. background-color:#ff6600;
  144. color:#fff;
  145. font-size:105%;
  146. text-decoration:none;
  147. padding:.4em;
  148. font-weight:bold;
  149. }
  150. .submit_naranja:hover {
  151. text-decoration:none;
  152. background-color:#FF751A;
  153. color:#fff;
  154. }
  155. .submit_normal_azul {
  156. border-bottom:solid 2px #000;
  157. border-right:solid 2px #000;
  158. border-top:solid 1px #336699;
  159. border-left:solid 1px #336699;
  160. background-color:#002255;
  161. color:#fff;
  162. margin-left:10px;
  163. }
  164. .submit_normal_azul:hover {
  165. text-decoration:none;
  166. background-color:#003366;
  167. color:#fff;
  168. }
  169. /* Menu */
  170. #menuContenedor a {
  171. text-decoration: none;
  172. }
  173. #menuContenedor ul
  174. {
  175. padding: 0;
  176. margin: 0;
  177. list-style-type: none;
  178. position: relative;
  179. }
  180. #menuContenedor ul li {
  181. display: inline;
  182. margin: 0 0 0px;
  183. }
  184. /*1st level elements*/
  185. #menuContenedor ul
  186. {
  187. border-top: 1px solid #FcFcFc;
  188. border-bottom: 1px solid #36c;
  189. background-color: #FcFcFc;
  190. padding: 2px 0;
  191. margin-bottom: 2em;
  192. }
  193. #menuContenedor ul a,
  194. #menuContenedor ul a:link,
  195. #menuContenedor ul a:visited
  196. {
  197. background: #900;
  198. border: 1px solid #FFF;
  199. bottom: 2px;
  200. color: #FFF;
  201. height: 1em;
  202. margin:0;
  203. margin-left: 15px;
  204. padding: 2px 4px 2px 4px;
  205. position: relative;
  206. right: 2px;
  207. text-decoration: none;
  208. z-index:1;
  209. }
  210. #menuContenedor ul a:hover,
  211. #menuContenedor ul a:focus
  212. {
  213. background: #C00;
  214. bottom: 1px;
  215. color: #FFF;
  216. position: relative;
  217. right: 1px;
  218. }
  219. /*current Link*/
  220. #menuContenedor ul a#current,
  221. #menuContenedor ul a#current:link,
  222. #menuContenedor ul a#current:visited {
  223. background: #369;
  224. border-bottom: none;
  225. border-left: 1px solid #9CC;
  226. border-right: 1px solid #9CC;
  227. border-top: 1px solid #9CC;
  228. bottom: 0;
  229. color: #FFF;
  230. cursor: text;
  231. margin: 0;
  232. margin-left: 15px;
  233. padding: 2px 5px 0 5px;
  234. position: relative;
  235. right: 0;
  236. }
  237. /*Second and subsequent levels*/
  238. #menuContenedor ul ul
  239. {
  240. font-size: 80%;
  241. position: absolute;
  242. top: 20px;
  243. left: 0;
  244. width: 100%;
  245. border-top: none;
  246. background-color: #369;
  247. height: 2em;
  248. }
  249. #menuContenedor ul ul li { display: inline; }
  250. #menuContenedor ul ul a,
  251. #menuContenedor ul ul a:link,
  252. #menuContenedor ul ul a:visited
  253. {
  254. background-color: #95B1BB;
  255. border: 1px solid black;
  256. color: black;
  257. top: 12px;
  258. }
  259. #menuContenedor ul ul a:hover,
  260. #menuContenedor ul ul a:focus
  261. {
  262. background-color: #9CD4F7;
  263. border: 1px solid #000000;
  264. color: black;
  265. }
  266. /*current Link*/
  267. #menuContenedor ul ul a#subcurrent,
  268. #menuContenedor ul ul a#subcurrent:link,
  269. #menuContenedor ul ul a#subcurrent:visited {
  270. background-color: #F7F7F7;
  271. border: 1px solid #F7F7F7;
  272. color: black;
  273. cursor: text;
  274. margin: 0;
  275. margin-left: 15px;
  276. position: relative;
  277. right: 0;
  278. }
  279. #menu {
  280. display:block;
  281. top:50px;
  282. }
  283. .opcion {
  284. float: left;
  285. margin-left: 15px;
  286. padding-right: 5px;
  287. }
  288. .opcion img {
  289. display: block;
  290. margin-left: auto;
  291. margin-right: auto;
  292. border: 0;
  293. }
  294. h2 {color: #9a4723; margin:0px;}
  295. legend {color: #9a4723; margin:0px; font-size:large;}