-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (86 loc) · 2.01 KB
/
index.html
File metadata and controls
86 lines (86 loc) · 2.01 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
<html>
<head>
<title>elektronisches Wahllokal</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<style type="text/css">
body{ height:99% }
div.box {
display:block;
position:absolute;
width:33%;
height:49%;
text-align:center;
/* border: thick solid black;*/
border: outset;
margin:1px;
}
div.box#hover {
border: inset;
}
div.box a {
padding-top: 30%;
padding-bottom: 30%;
display:block;
color: black;
text-decoration: none;
font-size: 200%;
}
div.box a:hover {
text-decoration: underline;
}
#b1 {
top:0;
left:0;
background-color: yellow;
}
#b2 {
top:0;
left:33.33%;
background-color: red;
}
#b3 {
top:0;
right:0;
background-color: lightgreen;
}
#b4 {
bottom:0;
left:0;
background-color: orange;
}
#b5 {
bottom:0;
left:33.33%;
background-color: darkred;
}
#b6 {
bottom:0;
right:0;
background-color: darkgreen;
}
</style>
</head>
<body>
<div class="box" id="b1">
<a href="stimmausgabe.html">Stimmausgabe</a>
</div>
<div class="box" id="b2">
<a href="stimmabgabe.html">Stimmabgabe</a>
</div>
<div class="box" id="b3">
<a href="auszaehlung.html">Auszählung</a>
</div>
<div class="box" id="b4">
<a href="stimmausgabeadmin.html">Administration Stimmausgabe</a>
</div>
<div class="box" id="b5">
<a href="stimmabgabeadmin.html">Administration Stimmabgabe</a>
</div>
<div class="box" id="b6">
<a href="auszaehlungadmin.html">Administration Auszählung</a>
</div>
<div style="position:fixed;right:0px; bottom:0px;width:100%;height:20px;z-index:1000;background-color:white;">
(C) 2012, Michael Braun <michael-dev@fami-braun.de>, Lizenziert unter GPLv2, Quelltext: <a href="https://github.com/michael-dev/polling-station">https://github.com/michael-dev/polling-station</a>
</div>
</body>
</html>