-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
114 lines (96 loc) · 1.75 KB
/
index.css
File metadata and controls
114 lines (96 loc) · 1.75 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
html, body {
height: 100%;
margin: 0px;
}
body {
background-color: var(--backgroundColor, greenyellow);
font-family:'Franklin Gothic Medium', 'sans-serif';
}
input[type=button] {
padding: 10px;
}
.centerAlign {
align-items: center;
display: flex;
justify-content: center;
height: 30%;
}
.monospaced {
font-family: 'Courier New', monospace;
}
#controlsContainer {
display: flex;
width: 100%;
}
#controls {
flex-shrink: 2;
padding: 10px;
}
#info {
flex-shrink: 1;
padding: 10px;
}
#mainContent {
height: 100%;
width: 100%;
}
#mainDialog {
background-clip: padding-box;
background-color: var(--dialogBoxColor, dodgerblue);
border-width: 8px;
border-style: solid;
border-image: url("border.gif");
border-image-repeat: repeat;
border-image-slice: 10;
border-image-width: 16px;
color: var(--fontColor, white);
font-family: 'Trebuchet MS', sans-serif;
font-size: x-large;
image-rendering: crisp-edges;
padding: 8px;
text-shadow: 2px 2px 1px black;
}
#dialogContainer {
display: inline-block;
position: relative;
}
#moreTextIcon {
position: absolute;
left: calc(100% - 36px);
visibility: hidden;
animation-duration: 1s;
animation-name: moreTextIcon;
animation-iteration-count: infinite;
}
.animateScale {
animation-duration: 200ms;
animation-name: openScale;
}
@keyframes moreTextIcon {
from {
top: calc(100% - 32px);
}
to {
top: calc(100% - 26px);
}
}
@keyframes openScale {
from {
height: 16px;
width: 16px;
}
to {
height: var(--dialogHeight, 100px);
width: var(--dialogWidth, 100px);
}
}
@keyframes closeScale {
to {
height: 16px;
width: 16px;
}
from {
height: var(--dialogHeight, 100px);
width: var(--dialogWidth, 100px);
}
}