-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
150 lines (133 loc) Β· 3.57 KB
/
index.html
File metadata and controls
150 lines (133 loc) Β· 3.57 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
<!DOCTYPE html>
<html>
<head>
<title>UCL Legal Hackers | Home</title>
<meta property="og:title" content="Home">
<meta property="og:site_name" content="UCL Legal Hackers">
<meta property="og:url" content="https://ucllh.org">
<meta property="og:description"
content="Exploring the intersection between law & technology. | UCL Legal Hackers is the University College London student chapter of the global Legal Hackers network.">
<meta property="og:type" content="website">
<meta property="og:image" content="https://github.com/ucllh/assets/raw/master/UCLLH%20(Simple%20Cover).jpg">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400&display=swap" rel="stylesheet">
<style>
body {
padding: 5vh 5vw 5vh 5vw;
font-family: 'Open Sans', sans-serif;
font-size: calc(1em + 1vw);
}
#container {
width: 100%;
max-width: 800px;
margin: 0 auto;
}
#logo-container {
text-align: center;
}
#logo-container h2 a,
#menu a,
#email a {
text-decoration: underline dotted;
}
#logo-container a:hover,
#menu a:hover,
#email a:hover,
#logo-container a:active,
#menu a:active,
#email a:active {
background-color: #fff2ac;
}
#logo {
width: 100%;
max-width: 500px;
max-height: 200px;
object-fit: cover;
}
h1 {
font-weight: 400;
font-size: 1.6em;
}
h2 {
font-weight: 300;
font-size: 1.4em;
}
#menu {
display: flex;
flex-direction: row;
justify-content: space-between;
align-content: center;
}
#icons {
margin-top: 5vw;
text-align: center;
}
a {
color: black;
text-decoration: none;
}
a:visited {
color: black;
}
#icons a+a {
margin-left: 20px;
}
#email {
margin-top: 20px;
text-align: center;
}
#email a {
font-weight: 300;
}
</style>
</head>
<body>
<div id="container">
<div id="logo-container">
<img src="./ucllh.jpg" id="logo" />
<h1>exploring the intersection between law and technology</h1>
<h2>
UCL Legal Hackers is the
<a href="https://www.ucl.ac.uk/laws/">University College London</a>
student chapter of the
<a href="https://legalhackers.org/people/">global Legal Hackers network</a>.
</h2>
</div>
<div id="menu">
<div>
<a href="https://www.facebook.com/ucllh/events/">upcoming events</a>
</div>
<div>
<a href="https://ucllh.github.io/materials/">past events</a>
</div>
<div>
<a href="https://mailchi.mp/a4907876a27d/ucllh">subscribe</a>
</div>
</div>
<div id="icons">
<a href="https://www.facebook.com/ucllh" title="Facebook">
<i data-feather="facebook"></i>
</a>
<a href="https://twitter.com/UCLLegalHackers" title="Twitter">
<i data-feather="twitter"></i>
</a>
<a href="https://instagram.com/hack_the_law" title="Instagram">
<i data-feather="instagram"></i>
</a>
<a href="https://www.linkedin.com/company/ucllh" title="LinkedIn">
<i data-feather="linkedin"></i>
</a>
<a href="https://github.com/ucllh" title="github">
<i data-feather="github"></i>
</a>
</div>
<div id="email">
<a href="mailto:hello@ucllh.org">hello@ucllh.org</a>
</div>
</div>
<script src="https://unpkg.com/feather-icons"></script>
<script>
const iconSize = `2em`
feather.replace({ width: iconSize, height: iconSize })
</script>
</body>
</html>