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

custom.css 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  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. .overlay {
  47. height: 100%;
  48. width: 50%;
  49. position: fixed;
  50. z-index: 1;
  51. top: 0;
  52. left: 100%;
  53. right: 0;
  54. background-color: rgb(122, 38, 122);
  55. border-width: 2px;
  56. overflow-x: hidden;
  57. transition: 0.5s;
  58. }
  59. .nav-bar{
  60. width: 100%;
  61. margin: auto;
  62. }
  63. #menubtn {
  64. padding: 5px;
  65. float:right;
  66. }
  67. .overlay-content {
  68. position: relative;
  69. top: auto;
  70. width: 85%;
  71. text-align: left;
  72. padding-top: 50px;
  73. margin-left: 8px;
  74. }
  75. .overlay span {
  76. padding: 8px;
  77. text-decoration: none;
  78. font-size: 36px;
  79. color: white;
  80. display: block;
  81. transition: 0.3s;
  82. float:right;
  83. }
  84. .overlay h2 {
  85. padding: 8px;
  86. font-size: 48px ;
  87. color: white;
  88. display: block;
  89. transition: 0.3s;
  90. float:left;
  91. }
  92. .overlay a {
  93. padding: 8px;
  94. text-decoration: none;
  95. font-size: 26px;
  96. color: white;
  97. display: block;
  98. transition: 0.3s;
  99. }
  100. .overlay a:hover, .overlay a:focus {
  101. color: #f1f1f1;
  102. }
  103. .overlay .closebtn {
  104. position: absolute;
  105. top: 20px;
  106. right: 45px;
  107. font-size: 60px;
  108. }
  109. @media screen and (max-height: 450px) {
  110. .overlay h2 {font-size: 32px}
  111. .overlay a {font-size: 20px}
  112. .overlay-content {font-size: 20px}
  113. .overlay .closebtn {
  114. font-size: 40px;
  115. top: 15px;
  116. right: 35px;
  117. }
  118. }
  119. /* CSS del quiz */
  120. .top-quiz-title {
  121. font-size: 175%;
  122. padding: 10px;
  123. }
  124. .inicio{
  125. font-size: 125%;
  126. padding-bottom: 10px;
  127. }
  128. .container {
  129. padding: 10px;
  130. }
  131. .pregunta{
  132. font-size: 125%;
  133. }
  134. .opciones{
  135. padding-left: 10px;
  136. padding-right: 10px;
  137. padding-bottom: 10px;
  138. }
  139. .opcion{
  140. font-size: 125%;
  141. padding: 8px;
  142. }
  143. /* Termina CSS del quiz */
  144. /* Empieza CSS del area de Servicios */
  145. .main-nav {
  146. background: rgba(153, 51, 102, 1.00);
  147. }
  148. .main-nav li {
  149. list-style: none;
  150. }
  151. .main-nav a {
  152. height: 45px;
  153. color: #FFF;
  154. text-transform: none;
  155. letter-spacing: .2em;
  156. text-decoration: none;
  157. display: block;
  158. padding: 10px 0 10px 20px;
  159. border-bottom: 1px dotted gray;
  160. }
  161. .main-nav a:hover {
  162. background: rgba(118,166,174,1.00);
  163. }
  164. .main-nav-ul ul {
  165. display: none;
  166. }
  167. .main-nav-ul li.tap ul {
  168. display: block;
  169. }
  170. .main-nav-ul ul a:before {
  171. content: '\203A';
  172. margin-right: 20px;
  173. }
  174. .main-nav .sub-arrow:after {
  175. content: '\203A';
  176. float: right;
  177. margin-right: 20px;
  178. transform: rotate(90deg);
  179. -webkit-transform: rotate(90deg);
  180. -moz-transform: rotate(90deg);
  181. }
  182. .main-nav li.tap .sub-arrow:after {
  183. content: '\2039';
  184. }
  185. .volver{
  186. background-color: rgba(153, 51, 102, 1.00);
  187. height: 40px;
  188. color: rgb(255, 255, 255);
  189. border-radius: 4px;
  190. margin-left: 18px;
  191. }
  192. .urgent {
  193. color: red;
  194. }
  195. /* Termina area de CSS del area de Servicios */