Skip to content

Commit 66a008e

Browse files
committed
Added Confidential Email Page
1 parent 2971b39 commit 66a008e

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed

confidential-email-page/index.html

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Confidential Email</title>
8+
<link rel="stylesheet" href="styles.css" />
9+
</head>
10+
11+
<body>
12+
<main id="email">
13+
<div id="confidential">
14+
<h2>CONFIDENTIAL</h2>
15+
</div>
16+
<p>Dear <span class="blurred">Goblinator</span>,</p>
17+
<p>We have an emergency. The secret formula for our <span class="blurred">Mega Marshmallows</span> has been compromised. This formula is what makes our marshmallows the fluffiest and most delicious.</p>
18+
<p>We suspect that <span class="blurred">The Dread Pirate, Billy the Kid</span> is behind this. He has taken the formula to his boss' hidden laboratory. Your mission is to infiltrate the lab and secure the formula before it's too late.</p>
19+
<p>Be sure to keep the lab's location confidential. Any leak of this information could jeopardize the entire operation.</p>
20+
<div id="top-secret">
21+
<h2>TOP SECRET</h2>
22+
</div>
23+
</main>
24+
</body>
25+
26+
</html>

confidential-email-page/styles.css

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
#email {
2+
padding: 50px;
3+
margin-top: 50px;
4+
width: 500px;
5+
border: 2px solid grey;
6+
background-color: #F1E9D2;
7+
box-sizing: border-box;
8+
}
9+
10+
#confidential,
11+
#top-secret {
12+
padding: 5px;
13+
margin-left: 10px;
14+
border: 5px solid red;
15+
color: red;
16+
}
17+
18+
#confidential {
19+
transform: rotate(45deg);
20+
font-size: 0.8rem;
21+
display: inline-block;
22+
margin-left: 250px;
23+
}
24+
25+
#top-secret {
26+
transform: rotate(-30deg);
27+
font-size: 0.7rem;
28+
margin-top: 20px;
29+
display: inline-block;
30+
}
31+
32+
.blurred {
33+
filter: blur(3px);
34+
}

0 commit comments

Comments
 (0)