src/pyams_skin/resources/less/messages.less
changeset 0 bb4aabe07487
child 215 d3c31bd96780
equal deleted inserted replaced
-1:000000000000 0:bb4aabe07487
       
     1 /**
       
     2  * Messages boxes
       
     3  */
       
     4 
       
     5 
       
     6 .MessageBox {
       
     7 	width: 100%;
       
     8 	height: 100%;
       
     9 	position: fixed;
       
    10 	top: 0;
       
    11 	left: 0;
       
    12 	background: rgba(0, 0, 0, .6);
       
    13 	z-index: 100000;
       
    14 
       
    15 	@media screen and (max-width:450px) and (max-width:767px) {
       
    16 		width: 100%;
       
    17 		height: 100%;
       
    18 		position: fixed;
       
    19 		top: 0;
       
    20 		left: 0;
       
    21 		background: rgba(0, 0, 0, .6);
       
    22 		z-index: 100000;
       
    23 	}
       
    24 }
       
    25 
       
    26 .MessageBoxContainer {
       
    27 	top: 35%;
       
    28 	color: #fff;
       
    29 	position: relative;
       
    30 	width: 100%;
       
    31 	background-color: #232323;
       
    32 	background-color: rgba(0, 0, 0, .8);
       
    33 	padding: 20px;
       
    34 
       
    35 	@media screen and (max-width:450px) and (max-width:767px) {
       
    36 		top: 25%;
       
    37 		color: #fff;
       
    38 		position: relative;
       
    39 		width: 100%;
       
    40 		background-color: #232323;
       
    41 	}
       
    42 
       
    43 	input,
       
    44 	select {
       
    45 		width: 50%;
       
    46 		padding: 5px;
       
    47 
       
    48 		@media screen and (max-width:450px) and (max-width:767px) {
       
    49 			width: 50%;
       
    50 			padding: 5px;
       
    51 		}
       
    52 	}
       
    53 }
       
    54 
       
    55 .MessageBoxMiddle {
       
    56 	position: relative;
       
    57 	left: 20%;
       
    58 	width: 60%;
       
    59 
       
    60 	@media screen and (max-width:450px) and (max-width:767px) {
       
    61 		position: relative;
       
    62 		left: 0;
       
    63 		width: 100%;
       
    64 		padding: 3px;
       
    65 	}
       
    66 	.MsgTitle {
       
    67 		letter-spacing: -1px;
       
    68 		font-size: 24px;
       
    69 		font-weight: 300;
       
    70 
       
    71 		@media screen and (max-width:450px) and (max-width:767px) {
       
    72 			font-size: 22px;
       
    73 		}
       
    74 	}
       
    75 	.pText {
       
    76 		font-style: 30px;
       
    77 	}
       
    78 	@media screen and (max-width:450px) and (max-width:767px) {
       
    79 		font-style: 10px;
       
    80 	}
       
    81 }
       
    82 
       
    83 .MessageBoxButtonSection {
       
    84 	width: 100%;
       
    85 	height: 30px;
       
    86 
       
    87 	@media screen and (max-width:450px) and (max-width:767px) {
       
    88 		width: 100%;
       
    89 		height: 30px;
       
    90 	}
       
    91 	button {
       
    92 		float: right;
       
    93 		margin-right: 7px;
       
    94 		padding-left: 15px;
       
    95 		padding-right: 15px;
       
    96 		font-size: 14px;
       
    97 		font-weight: 700;
       
    98 
       
    99 		@media screen and (max-width:450px) and (max-width:767px) {
       
   100 			float: right;
       
   101 			margin-right: 5px;
       
   102 			padding-left: 15px;
       
   103 			padding-right: 15px;
       
   104 		}
       
   105 	}
       
   106 }
       
   107 
       
   108 .LoadingBoxContainer {
       
   109 	top: 20%;
       
   110 	color: #fff;
       
   111 	position: relative;
       
   112 	width: 100%;
       
   113 	background-color: #232323;
       
   114 
       
   115 	.MsgTitle {
       
   116 		font-size: 26px;
       
   117 	}
       
   118 	.pText {
       
   119 		font-style: 30px;
       
   120 	}
       
   121 }
       
   122 
       
   123 .LoadingBoxMiddle {
       
   124 	position: relative;
       
   125 	left: 20%;
       
   126 	width: 50%;
       
   127 	padding: 10px;
       
   128 }
       
   129 
       
   130 #LoadingPoints {
       
   131 	position: absolute;
       
   132 }
       
   133 
       
   134 #divMiniIcons {
       
   135 	position: fixed;
       
   136 	width: 415px;
       
   137 	right: 10px;
       
   138 	bottom: 180px;
       
   139 	z-index: 9999;
       
   140 	float: right;
       
   141 
       
   142 	.cajita {
       
   143 		text-align: center;
       
   144 		vertical-align: middle;
       
   145 		padding: 4px 6px;
       
   146 		color: #FFF;
       
   147 		float: right;
       
   148 		cursor: pointer;
       
   149 		display: block;
       
   150 		background-color: red;
       
   151 		font-size: 17px;
       
   152 		margin-left: 4px;
       
   153 		margin-top: 5px;
       
   154 
       
   155 		&:active {
       
   156 			top: 1px;
       
   157 			left: 1px;
       
   158 			position: relative;
       
   159 		}
       
   160 	}
       
   161 }
       
   162 
       
   163 #divSmallBoxes {
       
   164 	position: fixed;
       
   165 	right: 0;
       
   166 	top: 0;
       
   167 	z-index: 9999;
       
   168 
       
   169 	@media screen and (max-width:450px) and (max-width:767px) {
       
   170 		position: fixed;
       
   171 		width: 90%;
       
   172 		right: 0;
       
   173 		top: 0;
       
   174 	}
       
   175 }
       
   176 
       
   177 .BigBox {
       
   178 	position: fixed;
       
   179 	right: 10px;
       
   180 	bottom: 10px;
       
   181 	background-color: #004d60;
       
   182 	padding: 10px 10px 5px;
       
   183 	width: 390px;
       
   184 	height: 150px;
       
   185 	color: #fff;
       
   186 	z-index: 99999;
       
   187 	box-sizing: content-box;
       
   188 	-webkit-box-sizing: content-box;
       
   189 	-moz-box-sizing: content-box;
       
   190 	border-left: 5px solid rgba(0, 0, 0, .15);
       
   191 	overflow: hidden;
       
   192 
       
   193 	span {
       
   194 		font-size: 17px;
       
   195 		font-weight: 300;
       
   196 		letter-spacing: -1px;
       
   197 		padding: 5px 0!important;
       
   198 		display: block;
       
   199 	}
       
   200 	p {
       
   201 		font-size: 13px;
       
   202 		margin-top: 10px;
       
   203 	}
       
   204 
       
   205 	@media screen and (max-width:450px) and (max-width:767px) {
       
   206 		width: 88%;
       
   207 	}
       
   208 	.bigboxicon {
       
   209 		font-size: 30px;
       
   210 		text-align: left;
       
   211 		position: absolute;
       
   212 		top: 120px;
       
   213 		left: 6px;
       
   214 		z-index: 0;
       
   215 	}
       
   216 	.bigboxnumber {
       
   217 		width: 100%;
       
   218 		text-align: right;
       
   219 		font-size: 25px;
       
   220 	}
       
   221 }
       
   222 
       
   223 .SmallBox {
       
   224 	position: absolute;
       
   225 	right: 5px;
       
   226 	top: 20px;
       
   227 	width: 420px;
       
   228 	color: #fff;
       
   229 	z-index: 9999;
       
   230 	overflow: hidden;
       
   231 	border: 1px solid transparent;
       
   232 
       
   233 	@media screen and (max-width:450px) and (max-width:767px) {
       
   234 		width: 95%;
       
   235 	}
       
   236 	&:hover {
       
   237 		border: 1px solid #fff;
       
   238 		cursor: pointer;
       
   239 
       
   240 		@media screen and (max-width:450px) and (max-width:767px) {
       
   241 			-webkit-box-shadow: 0 0 10px #888;
       
   242 			box-shadow: 0 0 10px #888;
       
   243 			cursor: pointer;
       
   244 		}
       
   245 	}
       
   246 	.foto {
       
   247 		font-size: 30px;
       
   248 		position: absolute;
       
   249 		left: 20px;
       
   250 	}
       
   251 	.textoFull {
       
   252 		width: 93%;
       
   253 		float: left;
       
   254 		padding-left: 20px;
       
   255 
       
   256 		@media screen and (max-width:450px) and (max-width:767px) {
       
   257 			width: 93%;
       
   258 			float: left;
       
   259 			padding-left: 20px;
       
   260 		}
       
   261 	}
       
   262 	.textoFoto {
       
   263 		width: 78%;
       
   264 		margin: 3px 20px 3px 80px;
       
   265 		float: left;
       
   266 
       
   267 		@media screen and (max-width:450px) and (max-width:767px) {
       
   268 			width: 55%;
       
   269 			margin: 3px 20px 3px 80px;
       
   270 			float: left;
       
   271 		}
       
   272 	}
       
   273 	span {
       
   274 		font-size: 17px;
       
   275 		font-weight: 300;
       
   276 		letter-spacing: -1px;
       
   277 		display: block;
       
   278 		margin: 4px 0;
       
   279 
       
   280 		@media screen and (max-width:450px) and (max-width:767px) {
       
   281 			font-size: 16px;
       
   282 		}
       
   283 	}
       
   284 	p {
       
   285 		font-size: 13px;
       
   286 		margin-top: 2px;
       
   287 
       
   288 		@media screen and (max-width:450px) and (max-width:767px) {
       
   289 			font-size: 12px;
       
   290 			margin-top: 2px;
       
   291 		}
       
   292 	}
       
   293 }
       
   294 
       
   295 .btnClose {
       
   296 	position: absolute;
       
   297 	right: 10px;
       
   298 	height: 16px;
       
   299 	width: 15px;
       
   300 	cursor: pointer;
       
   301 	font-size: 18px;
       
   302 	opacity: .5;
       
   303 	display: block;
       
   304 	top: 15px;
       
   305 
       
   306 	&:hover {
       
   307 		opacity: 1;
       
   308 	}
       
   309 }
       
   310 
       
   311 .miniPic {
       
   312 	position: absolute;
       
   313 	bottom: 8px;
       
   314 	right: 9px;
       
   315 }
       
   316 
       
   317 .miniIcon {
       
   318 	height: 100%;
       
   319 	font-size: 20px;
       
   320 }