-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (75 loc) · 1.06 KB
/
style.css
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
body {
background-color: #222;
color: #fff;
font: 14px Verdana;
}
table {
width: 100%;
}
input {
width: 100%;
padding: 5px;
}
#top tr td:first-child {
width: 260px;
font-size: 2em;
padding-left: 25px;
position: relative;
}
#title {
font-weight: bold;
}
#title span {
color: #4dd2ff;
}
#help {
font-size: 0.4em;
color: #eee;
text-decoration: none;
width: 50px;
display: inline-block;
position: absolute;
top: 10px;
right: 2%;
}
#help::after {
content: "❔";
}
#help:hover::after {
content: "❗";
color: red;
}
td {
padding: 5px 10px;
}
html, body, .container {
height: 100%;
}
.container {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: flex-start;
align-content: stretch;
align-items: stretch;
}
.item:nth-child(1) {
order: 0;
flex: 0 1 auto;
align-self: auto;
}
.item:nth-child(2) {
order: 1;
flex: 1 0 auto;
align-self: auto;
position: relative;
}
iframe {
position: absolute;
width: 100%;
height: 100%;
top: 0;
bottom: 0;
left: 0;
right: 0;
}