Added impressjs folder, berlin presentation

main
Paulo Truta 2024-03-16 17:46:07 +01:00
parent 59eff2fd99
commit 7bc33d3042
2 changed files with 119 additions and 0 deletions

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,51 @@
body {
background-color: white;
font-family: Arial, sans-serif;
color: black;
margin: 0;
padding: 0;
}
.step {
width: 600px;
border-radius: 10px;
padding: 40px;
/* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
background-color: #FFFFF0; */
color: #333;
text-align: center;
opacity: 10%;
transition: opacity 1s;
}
.step img {
opacity: 0%;
transition: opacity 1s;
}
.active {
opacity: 100%;
transition: opacity 1s;
}
.active img {
opacity: 100%;
transition: opacity 1s;
}
h1 {
font-size: 2.5em;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
p {
font-size: 1.2em;
line-height: 1.4;
margin: 20px 0;
}
img {
width: 80%;
height: auto;
margin-top: 20px;
}