Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions m1/examen-m1/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body class="reset globales">
<!--<div class="container">-->
<header class="cabecera">
<h1> Curs Mean-stack 2019 </h1>
<nav>
<ul class="menu_navegacion">
<li><a href="#"> Inici </a></li>
<li><a href="#"> Calendari </a></li>
<li><a href="#"> Activitats </a></li>
<li><a href="#"> Persones </a></li>
<li><a href="#"> Proyectes </a></li>
</ul>
</nav>
</header>
<main>
<section class="izquierda">
<h2><a href="#">alumnes</a></h2>
</section>
<section class="centro">

</section>
<section class="derecha">
<h2><a href="#">recursos</a></h2>

</section>
<div></div>
</main>
<footer class="pie">
<br>
<p> &copy; 2019 Victor Montanya</p>
<br>
</footer>
<!---</div>-->
</body>
</html>
89 changes: 89 additions & 0 deletions m1/examen-m1/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions m1/examen-m1/style.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

89 changes: 89 additions & 0 deletions m1/examen-m1/style.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
$color1: #333;
$color2:white;
$color3:whitesmoke;
$imagenfondo: "https://concepto.de/wp-content/uploads/2019/02/paisaje-natural-item-5.jpg";

/*reset*/
.reset{
margin:0;
padding:0;
box-sizing: border-box;

}
/*globales*/
.globales{
font-family: Helvetica Arial sans-serif;

}
//.container{
// width: 80%;
// margin:0 auto;
//}

/*layout y detalles*/
.cabecera{
background-color: $color1;
text-align: center;
background-image: url($imagenfondo);
filter: grayscale(100%);
}
.cabecera h1{
color:$color3;
}
.menu_navegacion li{
text-decoration:none;
text-align: center;
display:inline-block;
}
.menu_navegacion ul li a{
text-decoration: none;
}
.menu_navegacion ul li a:hover{
background-color: $color3;
}
main{
background-color: $color2;
}
section{
padding: 20px;
}
section h2 a{
display:inline-block;
text-decoration:none;
color:$color3;
}
section:hover{
background-color: rgba(0,0,0,0.1);
filter: drop-shadow(16px 16px 20px #333);

}

.izquierda{
float:left;
margin-left:20px;
width:33%;
height: 50px;
}

.centro{
visibility: hidden;
//float:center;
width:33%;
height: 50px;
}
//div{clear:both;}
.derecha{
float:right;
margin-right: 20px;
width: 33%;
height: 50px;
}
.pie{
height: 60px;
background-color: $color1;
clear:both;
}
.pie p{
color:$color3;
text-align: center;
}