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
34 changes: 34 additions & 0 deletions m1/examen-m1/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!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>Curs Mean-stack 2019</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<h1>Curs Mean-stack 2019</h1>
<nav>
<ul>
<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="">Projectes</a></li>
</ul>
</nav>
</header>

<main>
<p><a id="alumnes" href="">alumnes</a></p>
<p><a id="recursos" href="">recursos</a></p>
</main>

<footer>
<p>Copyright 2019 mean-stack - html|css|javascript</p>
</footer>

</body>
</html>
79 changes: 79 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.

102 changes: 102 additions & 0 deletions m1/examen-m1/style.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
// RESET y PROPIEDADES GLOBALES
html{
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: Helvetica, Arial, sans-serif;
}

// LAYOUT DEL DOCUMENTO

header{
background: url(https://concepto.de/wp-content/uploads/2019/02/paisaje-natural-item-5.jpg);
filter: grayscale(100%);
background-repeat: no-repeat;
width: 100%;
height: 125px;

h1{
margin:0;
text-align: center;
color: whitesmoke;
font-size: 40px;
padding:15px;
}
nav{

ul{
text-align: center;

}
li{
list-style: none;
display: inline-block;
font-size: 15px;

a{
color: whitesmoke;
text-decoration:none;
padding: 5px 5px;
margin:0 5px;
}
a:hover{
background-color: #333;
opacity: 0.2;
filter: drop-shadow(16px 16px 20px #333);

}
}
}
}

main{
position: relative;

height: 80%;

p{
position: relative;
display: inline-block;


padding: 60px 60px;
margin:10px 10px;
border: 1px solid whitesmoke;
font-size: 40px;
border-radius: 10px;

a{
text-decoration:none;
color: whitesmoke;
}


}
p:hover{
background-color:black;
opacity:0.1;
filter: drop-shadow(16px 16px 20px #333);
// a{
text-shadow: 15px 15px 15px #000
// }
}
}

footer{
display: flex;
justify-content: center;
align-content: end;

height: 100px;
background-color: #333;
color: whitesmoke;


font-size:10px;
p{
padding:70px 0 0 0;
}

}

// DETALLES