Newer
Older
/* file: main.css
author: Leif DeJong
created: Jan 2012
Tristan Wright July 2012
modified to support new elements for eDisplay-v2
removed .menu styles, original in archive
Lillian Gray 2017-2020
*/
margin: 0;
padding: 0;
font-family: Georgia, Serif;
display: none;
}
/*Gives support for flexbox in more browsers
Margins can be edited once there is support for row-gap and column-gap*/
display: -ms-flexbox;
display: flex;
-ms-flex-pack: distribute;
justify-content: space-around;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin: -10px;
}
body {
background: url("../images/header_bg.png") repeat-x scroll left top #EDEDED;
overflow-x: hidden;
}
font-size: 30px;
color: #9f2d42;
#pageTitle:hover, #pageTitle:active {
margin: 20px auto;
position: relative;
overflow: hidden;
background-color: #fff;
/* Border Radius */
-moz-border-radius: 5px 5px;
-khtml-border-radius: 5px 5px;
-webkit-border-radius: 5px 5px;
/* Box Shadow */
-moz-box-shadow: 0px 0px 5px #666;
-webkit-box-shadow: 0px 0px 5px #666;
box-shadow: 0px 0px 5px #666;
-webkit-transition: -webkit-box-shadow 0.1s ease-out;
-moz-transition: -webkit-box-shadow 0.1s ease-out;
-o-transition: -webkit-box-shadow 0.1s ease-out;
transition: -webkit-box-shadow 0.1s ease-out;
}
/* Begin Loading Icon Styles */
.spinner {
margin: auto;
width: 70px;
text-align: center;
height: 18px;
padding: calc((100vh * .6 + 57px) / 2) 0;
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
}
.spinner > div {
width: 18px;
height: 18px;
background-color: #9f2d42;
border-radius: 100%;
display: inline-block;
-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.spinner .bounce2 {
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
0%, 80%, 100% { -webkit-transform: scale(0) }
40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
0%, 80%, 100% {
-webkit-transform: scale(0);
transform: scale(0);
} 40% {
-webkit-transform: scale(1.0);
transform: scale(1.0);
}
}
/* End Loading Icon Styles */
#lineChart {
width: 100%;
height: calc(100vh * .6);
}
#control {
width: 100%;
height: 75px;
}
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
.close {
position: absolute;
right: 16px;
top: 16px;
width: 32px;
height: 32px;
opacity: 0.75;
cursor: pointer;
}
.close:hover {
opacity: 1;
}
.close:before, .close:after {
position: absolute;
left: 14px;
content: ' ';
height: 32px;
width: 4px;
background-color: #9f2d42;
}
.close:before {
transform: rotate(45deg);
}
.close:after {
transform: rotate(-45deg);
}
#aboutText, #howToUse {
margin: 48px;
}
line-height: 25px;
text-align: justify;
padding: 4%;
text-indent: 6%;
margin: auto;
max-width: 700px;
}
.aboutButton, .getPermalink, .csvButton {
font-size: 18px;
border: 1px solid #666;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-moz-box-shadow: 0px 0px 2px #666;
-webkit-box-shadow: 0px 0px 2px #666;
box-shadow: 0px 0px 2px #666;
cursor: pointer;
border: 1px solid #222;
-moz-box-shadow: 0px 0px 4px #222;
-webkit-box-shadow: 0px 0px 4px #222;
box-shadow: 0px 0px 4px #222;
}
.aboutButton:active, .getPermalink:active, .csvButton:active {
.getPermalink, .csvButton {
.getPermalink::before, .getPermalink::after {
position: absolute;
opacity: 0;
transition: opacity 1s ease-in-out;
}
.getPermalink.inactive::before, .getPermalink.inactive::after {
.getPermalink.active::before, .getPermalink.active::after {
content: 'Permalink Copied!';
font-size: 12px;
color: white;
margin: 0 auto;
width: 60%;
height: 140%;
line-height: 140%;
border-radius: 5px;
content: '';
width: 0;
height: 0;
border: 10px solid transparent;
border-top-color: #9f2d42;
left: calc(50% - 10px);
bottom: calc(150% - 16px);
font-size: 10px;
color: #888;