mirror of
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git
synced 2025-10-13 20:11:19 -04:00
35 lines
716 B
HTML
35 lines
716 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
|
|
<script type="text/javascript" src="snowflake.js"></script>
|
|
<style>
|
|
* {
|
|
box-sizing: border-box;
|
|
-webkit-transition: all 0.3s;
|
|
-moz-transition: all 0.3s;
|
|
transition: all 0.3s;
|
|
}
|
|
body {
|
|
position: absolute;
|
|
width: 100%; height: 100%; top: 0; margin: 0 auto;
|
|
background-color: #424;
|
|
color: #000;
|
|
text-align: center;
|
|
font-size: 16px;
|
|
font-variant: small-caps;
|
|
}
|
|
#badge {
|
|
margin: auto;
|
|
width: 88px; height: 31px;
|
|
background-image: url('koch.jpg');
|
|
color: #fff;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="badge">
|
|
Snowflake
|
|
</div>
|
|
</body>
|
|
</html>
|