-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path11-everything.html
More file actions
195 lines (175 loc) · 3.91 KB
/
11-everything.html
File metadata and controls
195 lines (175 loc) · 3.91 KB
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Job Board</title>
<link rel="stylesheet" href="css/base.css" />
<link rel="stylesheet" href="css/styles.css" />
<style>
/* Mobile first */
.container {
display: flex;
flex-direction: column;
gap: 2rem;
}
main {
& .title-div {
display: flex;
align-items: center;
gap: 1rem;
}
& .activity {
display: flex;
flex-direction: column;
gap: 0.6rem;
& li {
display: flex;
justify-content: space-between;
}
}
}
aside {
& nav ul {
display: flex;
justify-content: space-between;
& li {
flex: 1;
}
}
& .sidebar-card {
& header {
display: flex;
gap: 1rem;
}
& img {
margin-inline-start: auto;
}
& footer {
display: flex;
gap: 1rem;
& .status {
margin-inline-start: auto;
}
}
}
}
/* Desktop */
@media screen and (width > 900px) {
.container {
flex-direction: row;
align-items: flex-start;
}
main {
flex: 3;
& .activity {
flex-direction: row;
flex-wrap: wrap;
& li {
flex-direction: column-reverse;
flex-basis: 11rem;
}
}
}
aside {
flex: 2;
}
}
</style>
</head>
<body>
<div class="container">
<main class="main">
<section class="features title-div">
<img src="images/logo-1.png" alt="Laravel logo" />
<h1>Senior Laravel Developer</h1>
</section>
<section class="features brief">
<h2>Project Brief</h2>
<p>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam
malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.
</p>
</section>
<section class="features">
<h2>Activity on this Job</h2>
<ul class="activity">
<li>
<span class="label">Applied</span>
<span class="value">20 to 50</span>
</li>
<li>
<span class="label">Last activity</span>
<span class="value">3 minutes ago</span>
</li>
<li>
<span class="label">Interviewing</span>
<span class="value">2</span>
</li>
<li>
<span class="label">Invites sent</span>
<span class="value">6</span>
</li>
<li>
<span class="label">Unanswered invites</span>
<span class="value">1</span>
</li>
</ul>
</section>
<a href="#" class="btn-link">Apply for Job</a>
</main>
<aside class="sidebar">
<nav>
<ul>
<li>Related</li>
<li>Recent</li>
<li>Featured</li>
</ul>
</nav>
<section class="features">
<ul>
<li class="sidebar-card">
<header>
<a href="#">
<img src="images/wordpress-logo.png" alt="WordPress logo" />
</a>
<a href="#">
<h3>Custom WordPress Developer</h3>
</a>
<img src="images/star.png" alt="star" />
</header>
<p>Donec nec justo eget felis facilisis fermentum. Aliquam porttitor mauris...</p>
<footer>
<a href="#">WordPress</a>
<span class="status">
<strong>Active</strong>
</span>
<span>9 hours ago</span>
</footer>
</li>
<li class="sidebar-card">
<header>
<a href="#">
<img src="images/tailwindcss-logo.jpg" alt="Tailwind logo" />
</a>
<a href="#">
<h3>Frontend Developer skilled with Tailwind CSS</h3>
</a>
<img src="images/star.png" alt="star" />
</header>
<p>Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede...</p>
<footer>
<a href="#">Tailwind CSS</a>
<span class="status">
<strong>Active</strong>
</span>
<span>9 hours ago</span>
</footer>
</li>
</ul>
</section>
</aside>
</div>
</body>
</html>