-
Notifications
You must be signed in to change notification settings - Fork 0
/
eldd.html
125 lines (124 loc) · 3.74 KB
/
eldd.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!--Name: Emma Chen--><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Code in the Dark</title>
<style>
document, body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #ddd;
} section {
padding: 4em 8em;
margin: 0;
display: flex;
flex-direction: column;
} h1 {
color: #b07317;
} .cat {
background: #e2ea9e;
padding: .2em;
} .strike {
text-decoration: line-through;
} .f1 {
flex: 1;
} .truck-img-container {
width: 40vw;
position: relative;
} .truck {
width: 100%;
} .slider {
position: absolute;
bottom: -10%;
right: 10%;
width: 20vw;
} .pr {
padding-right: 4em;
} .row {
display: flex;
flex-direction: row;
} .row {
display: flex;
flex-direction: row;
} .jc-btwn {
justify-content: space-between;
} .icon {
margin-top: 6em;
flex-direction: column;
display: flex;
gap: 1.2em;
}
nav {
background: white;
padding: .2em;
margin-top: .2em;
display: flex;
flex-direction: row;
align-items: center;
gap: 2em;
padding-right: 2em;
}
nav img {
margin-left: 8em;
}
.long-img {
width: 100vw;
height: 15vh;
padding-bottom: 2em;
background-image: url("https://codeinthedark.hackillinois.org/submissions/images/home/tour-bg.png");
}
</style>
</head>
<body>
<nav>
<img src="https://codeinthedark.hackillinois.org/submissions/images/CAT-Logo-small.png" alt="">
<span class="f1"></span>
<span>Home</span>
<span>Pages</span>
<span>Blog</span>
<span>Products</span>
</nav>
<section>
<div class="row">
<div class="f1 pr">
<h1>Code in the Dark</h1>
<p>
Coding here and there! Try your best to recreate this responsive site <b>uner 25 mins...</b>
Take a look to the details, <i>each of them count!</i> Do your best to recreate them and
be the <span class="cat">CAT</span> <span class="strike">ninja</span> <u>n!nj@ c0dEr!</u>
</p>
<pre>
|\__/,| (`\
_.|o o |_ ) )
-(((---(((--------
</pre>
</div>
<div class="f1">
<div class="truck-img-container">
<img class="truck" src="https://codeinthedark.hackillinois.org/submissions/images/home/slider/truck.png"
alt="">
<img class="slider"
src="https://codeinthedark.hackillinois.org/submissions/images/home/slider/catlogo.png" alt="">
</div>
</div>
</div>
<div class="row jc-btwn">
<div class="icon">
<img src="https://codeinthedark.hackillinois.org/submissions/images/home/icon1.png" alt="">
CAT loves CS
</div>
<div class="icon">
<img src="https://codeinthedark.hackillinois.org/submissions/images/home/icon2.png" alt="">
CAT loves CS
</div>
<div class="icon">
<img src="https://codeinthedark.hackillinois.org/submissions/images/home/icon3.png" alt="">
CAT loves CS
</div>
</div>
</section>
<div class="long-img">
</div>
</body>
</html>