index.css 2.62 KB
Newer Older
Felipe Escala Torres committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
/*body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: url('../../img/bgLogin.jpg') 50% 50% no-repeat;
  background-size: cover;
}*/

.containerMe {
  position: relative;
  width: 100%;
  padding: 20px;
}

.translucentMe {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-bottom: -10px;
  left: 0;
  width: 100%;
  background-color: #7a93a5;
  opacity: 0.6;
  border-radius: 10px;
}

.msgTranslucent {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.5;
  border-radius: 10px;
}

.contentMe {
  position: relative;
  width: 100%;
}

.centralize {
  display: flex;
  align-items: center;
  justify-content: center;
}

input.error {
  border: 1px solid #e77d88
}

.error {
  padding-top: 3px;
  color: #e77d88;
  font-size: 12px
}

@media screen and (min-width: 384px) {
  .panel-zoom {
    zoom: 120%;
  }
}

@media screen and (max-width: 383px) {
  .panel-zoom {
    zoom: 100%;
  }
}

@media screen and (min-width: 384px) {
  .footerText {
    font-size: 14px
  }
}

@media screen and (max-width: 383px) {
  .footerText {
    font-size: 12px;
  }
}

.login-container .page-container .login-form {
Felipe Escala Torres committed
83 84 85 86 87 88
  width: 300px !important;
  height: auto;
}

.login-container .page-container .singing-form {
  width: 800px !important;
Felipe Escala Torres committed
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
  height: auto;
}

.vertically-centering-the-unknown {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.text-title {
  font-size: 60px;
}

#dniUsuario {
  border: 1px solid #000;
  height: 45px;
  font-size: 35px;
  padding-left: 10px;
  padding-top: 12px;
  text-align: center;
  border-radius: 7px;
}

.dyclock-digital-digital-time-string {
  text-shadow: 2px 0 0 #000, -2px 0 0 #000, 0 2px 0 #000, 0 -2px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
  background-color: transparent;
  border: none;
  color: white;
  font-size: 8em;
}

.swal-text {
  font-size: 21px !important;
}

body {
  background: -webkit-gradient(linear, left top, left bottom, from(#7d2a2a), to(#1b3a8d)) fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: BalooDaRegular;
  background-size: cover;
}

.messageFont {
  font-size: 18px;
}

.titleFont {
  margin-top: 0px;
  font-size: 28px;
}

@media (min-width: 769px) {
  .modal-sm {
    width: 300px;
  }
}

.absolute-center {
  /* height: must be declared */
  margin: auto;
  position: absolute !important;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
Felipe Escala Torres committed
158 159 160 161 162 163 164 165 166 167
}

.absolute-center-singing {
  /* height: must be declared */
  margin: auto;
  /* position: absolute !important; */
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
Felipe Escala Torres committed
168
}