123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- body {
-
- font-family: "Lato", sans-serif;
- font-size:20px;
- }
- h1 {
- font-size:30px;
-
- }
-
- h2 {
- font-size:25px;
- }
-
- p {
- padding-right: 20px;
- padding-left: 20px;
- text-align: justify;
- text-justify: inter-word;
- }
-
- .fa {
- padding: 20px;
- font-size: 50px;
- width: 60px;
- text-align: center;
- text-decoration: none;
- margin: 5px 2px;
- border-radius: 50%;
- }
-
- .fa-facebook {
- background: #3B5998;
- color: white;
- }
-
- .fa-twitter {
- background: #55ACEE;
- color: white;
- }
-
- .fa-youtube {
- background: #bb0000;
- color: white;
- }
-
- .fa-instagram {
- background: #125688;
- color: white;
- }
-
- .fa-envelope {
- background: #333;
- color: white;
- }
-
-
- .overlay {
- height: 100%;
- width: 50%;
- position: fixed;
- z-index: 1;
- top: 0;
- left: 100%;
- right: 0;
- background-color: rgb(122, 38, 122);
-
- border-width: 2px;
- overflow-x: hidden;
- transition: 0.5s;
- }
-
- .nav-bar{
- width: 100%;
- margin: auto;
- }
-
- #menubtn {
- padding: 5px;
- float:right;
- }
-
- .overlay-content {
- position: relative;
- top: auto;
- width: 85%;
- text-align: left;
- padding-top: 50px;
- margin-left: 8px;
- }
-
- .overlay span {
- padding: 8px;
- text-decoration: none;
- font-size: 36px;
- color: white;
- display: block;
- transition: 0.3s;
- float:right;
- }
-
- .overlay h2 {
- padding: 8px;
- font-size: 48px ;
- color: white;
- display: block;
- transition: 0.3s;
- float:left;
- }
-
- .overlay a {
- padding: 8px;
- text-decoration: none;
- font-size: 26px;
- color: white;
- display: block;
- transition: 0.3s;
- }
-
- .overlay a:hover, .overlay a:focus {
- color: #f1f1f1;
- }
-
- .overlay .closebtn {
- position: absolute;
- top: 20px;
- right: 45px;
- font-size: 60px;
- }
-
- @media screen and (max-height: 450px) {
- .overlay h2 {font-size: 32px}
- .overlay a {font-size: 20px}
- .overlay-content {font-size: 20px}
- .overlay .closebtn {
- font-size: 40px;
- top: 15px;
- right: 35px;
- }
- }
-
- /* CSS del quiz */
- .top-quiz-title {
- font-size: 175%;
- padding: 10px;
- }
-
- .inicio{
- font-size: 125%;
- padding-bottom: 10px;
- }
-
- .container {
- padding: 10px;
- }
-
- .pregunta{
- font-size: 125%;
- }
-
- .opciones{
- padding-left: 10px;
- padding-right: 10px;
- padding-bottom: 10px;
- }
-
- .opcion{
- font-size: 125%;
- padding: 8px;
- }
- /* Termina CSS del quiz */
-
- /* Empieza CSS del area de Servicios */
-
- .main-nav {
- background: rgba(153, 51, 102, 1.00);
- }
-
- .main-nav li {
- list-style: none;
- }
-
- .main-nav a {
- height: 45px;
- color: #FFF;
- text-transform: none;
- letter-spacing: .2em;
- text-decoration: none;
- display: block;
- padding: 10px 0 10px 20px;
- border-bottom: 1px dotted gray;
- }
-
- .main-nav a:hover {
- background: rgba(118,166,174,1.00);
- }
-
- .main-nav-ul ul {
- display: none;
- }
-
- .main-nav-ul li.tap ul {
- display: block;
- }
-
- .main-nav-ul ul a:before {
- content: '\203A';
- margin-right: 20px;
- }
-
- .main-nav .sub-arrow:after {
- content: '\203A';
- float: right;
- margin-right: 20px;
- transform: rotate(90deg);
- -webkit-transform: rotate(90deg);
- -moz-transform: rotate(90deg);
- }
-
- .main-nav li.tap .sub-arrow:after {
- content: '\2039';
- }
-
- .volver{
- background-color: rgba(153, 51, 102, 1.00);
- height: 40px;
- color: rgb(255, 255, 255);
- border-radius: 4px;
- margin-left: 18px;
- }
-
- .urgent {
- color: red;
- }
-
- /* Termina area de CSS del area de Servicios */
|