-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (84 loc) · 1.16 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
.fill {
width: 100%;
}
div.top {
display: flex;
}
img.logo {
min-width: 1in;
max-width: 1in;
min-height: 1in;
max-height: 1in;
margin-bottom: auto;
}
.top h1 {
width: 100%;
}
button {
display: inline-block;
padding: 10px 30px;
text-align: center;
text-decoration: none;
color: white;
background-color: #0069bc;
transition: box-shadow .2s, background-color .2s, color .2s;
transition-timing-function: linear;
}
button:hover:enabled {
color: #0069bc;
background-color: white;
box-shadow: 0px 3px 10px grey;
}
button:disabled {
background-color: grey;
color: white;
}
table {
width: 100%;
}
td {
width: 50%;
height: 100%;
}
h1, h2 {
text-align: center;
}
h2 {
margin: 0.1em;
}
div {
margin: 5px;
padding: 5px;
}
div.box {
border: 2px solid black;
//height: 8em;
overflow: hidden;
transition: height .5s;
}
div.box.hidden {
height: 1.1em;
}
.container {
max-width: 800px;
margin: auto;
margin-top: 1%;
border: 1px solid black;
}
input {
font-size: 1em;
width: 95%;
}
#buttonarea, #resultarea {
min-height: 10em;
}
#progress {
text-align: center;
font-size: small;
font-style: italic;
margin: 0;
padding: 0;
}
iframe {
display: none;
}