85 lines
1.6 KiB
HTML
85 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>PtiClic pre-alpha 0.2</title>
|
|
<meta charset="utf-8" />
|
|
<style>
|
|
body {
|
|
background-color: black;
|
|
padding: 0;
|
|
margin: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
#screen {
|
|
background-color: white;
|
|
display: inline-block;
|
|
text-align: left;
|
|
width: 480px;
|
|
height: 800px;
|
|
background-color : #FFFFE0;
|
|
}
|
|
|
|
.mc.caption {
|
|
border-bottom: medium solid #44AA44;
|
|
text-align: center;
|
|
color: #8b4;
|
|
font-size: 50px;
|
|
padding: 10px 0;
|
|
}
|
|
|
|
.mn.caption {
|
|
border-bottom: medium solid #44AA44;
|
|
text-align: center;
|
|
color: #4a4;
|
|
background-color: #F0F8D0;
|
|
font-size: 30px;
|
|
padding: 10px 0;
|
|
}
|
|
|
|
.relations {
|
|
width: 100%;
|
|
}
|
|
|
|
.relations div {
|
|
background-color: #F0F8D0;
|
|
border: thin solid #44AA44;
|
|
-moz-border-radius: 10px;
|
|
margin: 10px;
|
|
height: 72px;
|
|
background-repeat: no-repeat;
|
|
padding: 10px;
|
|
}
|
|
|
|
.relations div:nth-child(odd) {
|
|
text-align: right;
|
|
padding-left: 76px;
|
|
background-position: 2% center;
|
|
}
|
|
|
|
.relations div:nth-child(even) {
|
|
text-align: left;
|
|
padding-right: 76px;
|
|
background-position: 98% center;
|
|
}
|
|
|
|
.relations .rid-1 { background-image: url("img/rel/-1.png"); }
|
|
.relations .rid0 { background-image: url("img/rel/0.png"); }
|
|
.relations .rid5 { background-image: url("img/rel/5.png"); }
|
|
.relations .rid7 { background-image: url("img/rel/7.png"); }
|
|
.relations .rid9 { background-image: url("img/rel/9.png"); }
|
|
.relations .rid10 { background-image: url("img/rel/10.png"); }
|
|
|
|
</style>
|
|
<script src="jquery-1.5.1.min.js"></script>
|
|
<script src="pticlic.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="screen">
|
|
<div class="mc caption"></div>
|
|
<div class="mn caption"></div>
|
|
<div class="relations"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|