blob: fd89ec2c16616149ed6cde99fcbf23f1ac21cd8e (
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
84
85
86
|
a {
/*color: orange;*/
color: slategray;
}
a:hover {
/*color: darkorange;*/
color: darkslategray;
}
p {
margin: 5px;
}
li {
list-style-type: none;
}
body {
background-color: #111;
margin: 0;
}
div.content {
margin: 0 auto;
margin-top: 10px;
max-width: 80ex;
background-color: #111;
color: antiquewhite;
}
table {
border-collapse: collapse;
width: 100%;
}
tr {
border-bottom: 1px solid #666;
border-top: 1px solid #666;
}
td {
padding-top: 10px;
padding-bottom: 10px;
vertical-align: top;
}
form {
margin-bottom: 10px;
}
input {
width: 100%;
}
tr:hover {
background-color: #222;
}
iframe {
position: absolute;
top: 0;
left: 0;
}
.comments {
font-size: small;
}
input#term {
width: 70%;
}
select#lang {
width: calc(10% - 10px);
}
select#order {
width: calc(20% - 10px);
}
video {
/*max-width: 100vh;*/
height: 100vh;
/*max-height: 100vh;*/
}
|