forked from ImmersiveDesignGroup/ScalableHCI.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patharchive.html
More file actions
96 lines (79 loc) · 1.6 KB
/
archive.html
File metadata and controls
96 lines (79 loc) · 1.6 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
---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
layout: page
permalink: /archive/
---
<div class="image-container">
<div class="container-background"></div>
<div class="text-container">
<p class="line1">Scalable HCI Symposium</p>
</div>
</div>
<h1 class="custom-h1">Archive</h1>
<div class="archive">
<ul>
<li>
<a href="/2025">Scalable HCI 2025, Shenzhen</a>
</li>
<li>
<a href="/2024">Scalable HCI 2024, Shenzhen</a>
</li>
</ul>
</div>
<style>
.image-container {
position: relative;
width: 100%;
height: 400px;
}
.container-background {
filter: brightness(80%);
width: 100%;
height: 100%;
background-image: url('/assets/shenzhen_bg4.jpg');
background-size: cover;
background-position: center;
position: absolute;
top: 0;
left: 0;
z-index: -2;
}
.content-note {
display: inline-block;
color: rgb(170, 20, 32);
hyphens: auto;
margin: 0;
padding: 10px 0 20px 0;
}
.text-container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
text-align: center;
width: 100%;
z-index: -1;
}
.line1 {
font-size: 4em;
margin: 0;
}
@media (max-width: 768px) {
.line1 {
font-size: 2em;
}
}
.custom-h1 {
font-size: 2em;
font-weight: 500;
color: #123957;
text-align: left;
margin: 0;
padding: 20px 0 10px;
}
.archive li a {
color: #333;
}
</style>