-
Notifications
You must be signed in to change notification settings - Fork 0
/
under-construction.html
103 lines (102 loc) · 2.66 KB
/
under-construction.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
<!DOCTYPE html>
<html>
<head>
<title>RabbitMQ and Common Lisp - Under Construction</title>
<link href='https://fonts.googleapis.com/css?family=Roboto+Mono:500' rel='stylesheet' type='text/css'>
<style>
body{
font-family: 'Roboto Mono', sans-serif;
background: #fcfcfc;
}
.container{
position: absolute;
height: 380px;
width: 100%;
left: 0;
top: 50%;
margin: -490px 0 0 0;
text-align: center;
font-size: 50px;
font-weight: 500;
}
.container img{
max-width: 100%;
margin: auto;
}
@media only screen and (max-height: 970px){
.container{
top: 0;
margin: 0;
}
}
.phone-visible{
display: none;
}
.phone-hidden{
display: inherit;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.3),
only screen and (-o-min-device-pixel-ratio: 13/10),
only screen and (min-resolution: 120dpi){
.phone-visible{
display: inherit;
}
.phone-hidden{
display: none;
}
}
.artwork {
margin-top: 50px;
height: 250px;
}
.artwork img{
position: relative;
max-height: 100%;
text-align: center;
}
.copyright{
max-width: 500px;
margin: 50px auto;
font-size: 12px;
color: #aaa;
}
.copyright a{
color: #aaa;
font-weight: bold;
}
.copyright img{
margin-bottom: 5px;
}
.flies img{
width: 30px;
}
#fly-1{
position: absolute;
left: 10%;
top: 10%;
}
#fly-2{
position: absolute;
right: 10%;
top: 30%;
}
</style>
</head>
<body>
<div class="container">
<img src="https://raw.githubusercontent.com/cl-rabbit/artwork/master/images/r4-2-small.png" class="phone-hidden">
<img src="https://raw.githubusercontent.com/cl-rabbit/artwork/master/images/imgo2.jpg" class="phone-visible"><br>
Under Construction
<div class="artwork">
<img src="https://raw.githubusercontent.com/cl-rabbit/artwork/master/images/r1-r3-combined.png">
</div>
<div class="copyright">
<a rel="license" href="http://creativecommons.org/licenses/by-nc/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc/4.0/88x31.png" /></a><br /><span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">CL-RABBIT artwork</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="https://github.com/cl-rabbit/artwork" property="cc:attributionName" rel="cc:attributionURL">CL-RABBIT Artwork team</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc/4.0/">Creative Commons Attribution-NonCommercial 4.0 International License</a>.
</div>
</div>
<div class="flies">
<img src="img/f1.png" id="fly-1">
<img src="img/f2.png" id="fly-2">
</div>
</body>
</html>