Skip to content
This repository was archived by the owner on Dec 3, 2024. It is now read-only.

Commit 471d73e

Browse files
committed
initial commit
1 parent f3a0892 commit 471d73e

File tree

10 files changed

+2134
-7
lines changed

10 files changed

+2134
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.DS_Store

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919

2020
<div class="main">
2121
<svg viewBox="0 0 86 32" class="title">
22-
<text x="50%" y="15" text-anchor="middle" fill="yellow" font-family="Impact">FRONTEND</text>
23-
<text x="50%" y="30" text-anchor="middle" fill="yellow" font-family="Impact">SMACKDOWN</text>
22+
<text x="50%" y="15" text-anchor="middle" fill="yellow" font-family="Impact, Impact-ttf">FRONTEND</text>
23+
<text x="50%" y="30" text-anchor="middle" fill="yellow" font-family="Impact, Impact-ttf">SMACKDOWN</text>
2424
</svg>
2525
<h2>The challenge</h2>
2626
<p>Your task is to craft a landing page that presents who you are and that showcase your unique skills as a frontend engineer.
@@ -36,7 +36,7 @@ <h2>The challenge</h2>
3636
<h2>Submission guidelines</h2>
3737
<ul>
3838
<li>Commit your project to this repository and place it under a folder with your name in the submissions folder.</li>
39-
<li>If you require any build tools, remember to compile the project so that it can be accessed directly from this repository.</li>
39+
<li>If you use any build tools, remember to compile the project so that it can be accessed directly as a github page.</li>
4040
<li>Submissions must be uploaded before the presentations on [INSERT DATE].</li>
4141
</ul>
4242
</div>

readme.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Frontend Smackdown
2+
Competition website https://amboss-mededu.github.io/frontend-smackdown/

src/impact.eot

111 KB
Binary file not shown.

src/impact.svg

Lines changed: 2100 additions & 0 deletions
Loading

src/impact.ttf

111 KB
Binary file not shown.

src/impact.woff

66.9 KB
Binary file not shown.

src/impact.woff2

51.4 KB
Binary file not shown.

src/style.css

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
@font-face {
2+
font-family: 'Impact-ttf';
3+
src: url('impact.ttf') format('ttf'),
4+
url('impact.woff2') format('woff2'),
5+
url('impact.woff') format('woff'),
6+
url('impact.eot') format('eot'),
7+
url('impact.svg') format('svg');
8+
9+
font-weight: normal;
10+
font-style: normal;
11+
}
12+
113
body, html {
214
background: black;
315
margin: 0;
@@ -25,7 +37,8 @@ body, html {
2537

2638
@media screen and (max-width: 640px) {
2739
.main {
28-
margin-top: 64px
40+
margin-top: 64px;
41+
padding: 48px 18px;
2942
}
3043
}
3144

@@ -46,17 +59,16 @@ ul {
4659
.prize {
4760
text-align: center;
4861
font-size: 96px;
49-
font-weight: bold;
5062
text-shadow: 0 7px 0 white;
5163
color: green;
5264
-webkit-text-stroke: 1px white;
53-
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
65+
font-family: Impact, "Impact-ttf", Haettenschweiler, 'Arial Narrow Bold', sans-serif;
5466
line-height: 1.1;
5567
}
5668

5769
@media screen and (max-width: 640px) {
5870
.prize {
59-
font-size: 48px;
71+
font-size: 38px;
6072
text-shadow: 0 3px 0 white;
6173
line-height: 1.3;
6274
}

submissions/jane_doe/index.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
7+
<title>My project</title>
8+
</head>
9+
<body>
10+
<p>Hello World</p>
11+
</body>
12+
</html>

0 commit comments

Comments
 (0)