blob: 622c0ef5dfcf50415383bc7cd4573701418fadfc (
plain)
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
|
a{
text-decoration:none;
color:darkgrey;
font-weight:bold;
}
footer>*{
font-size:small;
background-color:white;
}
img{
vertical-align:sub;
margin-left:auto;
}
h1{
height:32px;
font-size:32px;
text-align:center;
}
a:hover::after{
content:">";
}
a::after,a::before{
font-weight:normal;
color:black;
}
a::after{
content:"]";
}
a::before{
content:"[";
}
div{
float:left;
margin-left:10%;
margin-right:10%;
width:10%
}
id{
margin-left:10%;
margin-right:10%;
width:80%;
text-align:center;
float:left;
}
html{
width:80%;
margin-left:10%;
margin-right:10%;
color:black;
background-color:white;
}
footer{
position:fixed;
bottom:0px;
}
label {
cursor: pointer;
}
input[type=checkbox] {
position: absolute;
/*top: 0;
left: 0;*/
opacity: 0;
}
body>ol,body>ul,body>p{
float:left;
}
input[type=checkbox] ~ul{
height:0px;
overflow:hidden;
}
input[type=checkbox]:checked ~ul{
height:auto;
}
|