HTML5 y CSS3 pt. 4: Avanzando en CSS 06
Diseño responsivo - fin del curso.
This commit is contained in:
parent
bb393c6e73
commit
7eb3ca2b35
@ -383,3 +383,15 @@ de aquellos que tengan el id `mision`.
|
||||
- Mozilla Box-shadow
|
||||
[generator](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Backgrounds_and_Borders/Box-shadow_generator)
|
||||
|
||||
#### Diseño responsive
|
||||
|
||||
Marcar elemento para modificar según resolución de pantalla de hasta 480px
|
||||
`@media screen and (max-width:480px){ body: red; }`
|
||||
|
||||
Diseño [responsive](./html_css_parte4/style.css#L302)
|
||||
|
||||
Final curso HTML5 y CSS parte 4
|
||||
|
||||
Extra:
|
||||
[Organizar estudio y portafolio con notion en alura](https://www.aluracursos.com/blog/organizar-estudio-y-portafolio-con-notion-en-alura).
|
||||
|
||||
|
@ -5,10 +5,10 @@
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>Barbería Alura</title>
|
||||
<link rel="stylesheet" href="./reset.css">
|
||||
<link rel="stylesheet" href="./style.css">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="./style.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
@ -70,7 +70,7 @@
|
||||
alt="hombre sentado en barbería al que le cortan la barba con tijeras"/>
|
||||
</div>
|
||||
<div class="video">
|
||||
<iframe width="560" height="315" src="https://www.youtube.com/embed/TnJ_ObLRM9w"
|
||||
<iframe width="100%" height="315" src="https://www.youtube.com/embed/TnJ_ObLRM9w"
|
||||
title="YouTube video player" frameborder="0"
|
||||
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
|
||||
allowfullscreen></iframe>
|
||||
|
@ -298,3 +298,21 @@ p:first-line {
|
||||
width: 560px;
|
||||
margin: 1em auto;
|
||||
}
|
||||
|
||||
@media screen and (max-width:480px){
|
||||
h1 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
nav {
|
||||
position: static;
|
||||
}
|
||||
|
||||
.caja, .principal, .mapa-contenido .contenido-diferenciales, .video {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.lista-diferenciales, .imagen-diferenciales {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user