Repositorio del curso CCOM4030 el semestre B91 del proyecto Paz para la Mujer

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. body {
  2. font-family: "Lato", sans-serif;
  3. font-size:20px;
  4. }
  5. h1 {
  6. font-size:30px;
  7. }
  8. h2 {
  9. font-size:25px;
  10. }
  11. p {
  12. padding-right: 20px;
  13. padding-left: 20px;
  14. text-align: justify;
  15. text-justify: inter-word;
  16. }
  17. .fa {
  18. padding: 20px;
  19. font-size: 50px;
  20. width: 60px;
  21. text-align: center;
  22. text-decoration: none;
  23. margin: 5px 2px;
  24. border-radius: 50%;
  25. }
  26. .fa-facebook {
  27. background: #3B5998;
  28. color: white;
  29. }
  30. .fa-twitter {
  31. background: #55ACEE;
  32. color: white;
  33. }
  34. .fa-youtube {
  35. background: #bb0000;
  36. color: white;
  37. }
  38. .fa-instagram {
  39. background: #125688;
  40. color: white;
  41. }
  42. .fa-envelope {
  43. background: #333;
  44. color: white;
  45. }
  46. .fa-phone {
  47. background:#007bb5;
  48. color: white;
  49. }
  50. /* CSS del menu */
  51. .overlay {
  52. height: 100%;
  53. width: 50%;
  54. position: fixed;
  55. z-index: 1;
  56. top: 0;
  57. left: 100%;
  58. right: 0;
  59. background-color: rgb(122, 38, 122);
  60. border-width: 2px;
  61. overflow-x: hidden;
  62. transition: 0.5s;
  63. }
  64. .nav-bar{
  65. width: 100%;
  66. margin: auto;
  67. }
  68. #menubtn {
  69. position: absolute;
  70. top: 4px;
  71. right: 5px;
  72. font-size: 28px;
  73. }
  74. .overlay-content {
  75. position: relative;
  76. top: auto;
  77. width: 85%;
  78. text-align: left;
  79. padding-top: 50px;
  80. margin-left: 8px;
  81. }
  82. .overlay span {
  83. padding: 8px;
  84. text-decoration: none;
  85. font-size: 36px;
  86. color: white;
  87. display: block;
  88. transition: 0.3s;
  89. float:right;
  90. }
  91. .overlay h2 {
  92. padding: 8px;
  93. font-size: 48px ;
  94. color: white;
  95. display: block;
  96. transition: 0.3s;
  97. float:left;
  98. }
  99. .overlay a {
  100. padding: 8px;
  101. text-decoration: none;
  102. font-size: 26px;
  103. color: white;
  104. display: block;
  105. transition: 0.3s;
  106. }
  107. .overlay a:hover, .overlay a:focus {
  108. color: #f1f1f1;
  109. }
  110. .overlay .closebtn {
  111. position: absolute;
  112. top: 10px;
  113. right: 45px;
  114. font-size: 28px;
  115. }
  116. @media screen and (max-height: 450px) {
  117. .overlay h2 {font-size: 32px}
  118. .overlay a {font-size: 20px}
  119. .overlay-content {font-size: 20px}
  120. .overlay .closebtn {
  121. font-size: 40px;
  122. top: 15px;
  123. right: 35px;
  124. }
  125. }
  126. /* CSS del quiz */
  127. .top-quiz-title {
  128. font-size: 175%;
  129. padding: 10px;
  130. }
  131. .inicio{
  132. font-size: 125%;
  133. padding-bottom: 10px;
  134. }
  135. .container {
  136. padding: 10px;
  137. }
  138. .pregunta{
  139. font-size: 125%;
  140. }
  141. .opciones{
  142. padding-left: 10px;
  143. padding-right: 10px;
  144. padding-bottom: 10px;
  145. }
  146. .opcion{
  147. font-size: 125%;
  148. padding: 8px;
  149. }
  150. /* Termina CSS del quiz */
  151. /* Empieza CSS del area de Servicios */
  152. .main-nav {
  153. background: rgba(122,38,122,1.00);
  154. }
  155. .main-nav li {
  156. list-style: none;
  157. }
  158. .main-nav a {
  159. height: 50px;
  160. color: #FFF;
  161. text-transform: uppercase;
  162. letter-spacing: .2em;
  163. text-decoration: none;
  164. display: block;
  165. padding: 10px 0 10px 20px;
  166. border-bottom: 1px dotted gray;
  167. }
  168. .main-nav a:hover {
  169. background: rgba(118,166,174,1.00);
  170. }
  171. .main-nav-ul ul {
  172. display: none;
  173. }
  174. .main-nav-ul li.tap ul {
  175. display: block;
  176. }
  177. .main-nav-ul ul a:before {
  178. content: '\203A';
  179. margin-right: 20px;
  180. }
  181. .main-nav .sub-arrow:after {
  182. content: '\203A';
  183. float: right;
  184. margin-right: 20px;
  185. transform: rotate(90deg);
  186. -webkit-transform: rotate(90deg);
  187. -moz-transform: rotate(90deg);
  188. }
  189. .main-nav li.tap .sub-arrow:after {
  190. content: '\2039';
  191. }
  192. /* Termina area de CSS del area de Servicios */