Jump to content
Menú alternativo
Alternar el menú de preferencias
Menú alternativo personal
No has accedido
Tu dirección IP será visible si haces alguna edición
Sin resumen de edición
Sin resumen de edición
Línea 2: Línea 2:
font-family: Ubuntu;
font-family: Ubuntu;
}
}
/* https://stackoverflow.com/a/63699803 */
ul {
list-style-type:none;
}
ul li {
display: inline-block;
border:1px solid grey;
padding: 5px;
color:blue;
}
@media only screen and (max-width: 767px){
ul {
width: 400px;
}
ul li {
color: red;
display: block;
}
}
/* https://stackoverflow.com/a/51053501 */
/* https://stackoverflow.com/a/51053501 */
.showcase-container {
.showcase-container {

Revisión del 14:45 10 oct 2022

* {
	font-family: Ubuntu;
}

/* https://stackoverflow.com/a/63699803 */
ul {
	list-style-type:none;
}

ul li {
	display: inline-block;
	border:1px solid grey;
	padding: 5px;
	color:blue;
}

@media only screen and (max-width: 767px){
	ul {
		width: 400px;
	}
	ul li {
		color: red;
		display: block;
	}
}

/* https://stackoverflow.com/a/51053501 */
.showcase-container {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	position: relative;
}

.showcase-container img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	max-width: 1200px;
}

.main-centered {
	position: absolute;
	top: 30%;
	left: 40%;
	transform: translate(-50%, -50%);
	font-size: 229%;
	font-weight: bold;
	padding: 10px 20px;
	color: #fff;
}

h2.main-centered {
	border: none;
}

@media (max-width: 1000px) {
	.mega-header-title {
		font-size: 115%;
		width: 75%;
	}
	.bi-buttons span {
		display: inline-block;
	}
	.main-centered {
		top: 40%;
		left: 50%;
	}
}