Skip to content
Snippets Groups Projects
main.css 6.58 KiB
Newer Older
jiangxu's avatar
jiangxu committed
/* 	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
*/
jiangxu's avatar
jiangxu committed

/***** Begin Generic Styles *****/

jiangxu's avatar
jiangxu committed
* {
	margin: 0;
	padding: 0;
jiangxu's avatar
jiangxu committed
	outline: none;
	font-family: Georgia, Serif;
jiangxu's avatar
jiangxu committed
}

/* used to easily hide objects in main.js */
Lillian Gray's avatar
Lillian Gray committed
.displayNone {
	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;
}

	margin: 10px;
}

button {
	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;
}

button:active {
	background-color: #ddd;
}

/***** End Generic Styles *****/

jiangxu's avatar
jiangxu committed
body {
	background: url("../images/header_bg.png") repeat-x scroll left top #EDEDED;
	overflow-x: hidden;
}

Lillian Gray's avatar
Lillian Gray committed
header {
	max-width: 1000px;
jiangxu's avatar
jiangxu committed
	margin: 0 auto;
}

Lillian Gray's avatar
Lillian Gray committed
header a, header button {
	text-decoration: none;
jiangxu's avatar
jiangxu committed
	align-self: flex-end;
}

	font-size: 30px;
	color: #9f2d42;
jiangxu's avatar
jiangxu committed
	white-space: nowrap;
}

#pageTitle:hover, #pageTitle:active {
	color: #6F1F2E;
jiangxu's avatar
jiangxu committed
}

.aboutButton {
	font-size: 15px;
	height: 35px;
	width: 100px;
	background-color: white;
	text-align: center;
	vertical-align: text-top;
}

.aboutButton:hover {
	border: 1px solid #222;
	-moz-box-shadow: 0px 0px 4px #222;
    -webkit-box-shadow: 0px 0px 4px #222;
    box-shadow: 0px 0px 4px #222;
}

#chart {
	width: 100%;
	margin: 20px 0;
}

Lillian Gray's avatar
Lillian Gray committed
#dashboard {
	/* height is responsive, + 75 is for height of control */
	height: calc(100vh * .6 + 75px);
	position: relative;
jiangxu's avatar
jiangxu committed
	overflow: hidden;
	background-color: #fff;
	/* border radius */
	border-radius: 5px 5px;
jiangxu's avatar
jiangxu committed
 	-moz-border-radius: 5px 5px;
    -khtml-border-radius: 5px 5px;
   	-webkit-border-radius: 5px 5px;
   	/* box shadow */
jiangxu's avatar
jiangxu committed
   	-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 Close Button Styles *****/

.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);
}

/***** End Close Button Styles *****/

/***** Begin Loading Icon Styles *****/
Lillian Gray's avatar
Lillian Gray committed

.spinner {
	margin: auto;
	width: 70px;
	text-align: center;
	/* padding used to center loading icon and so it fills the dashboard 
	=(dashboard height - spinner height) / 2 */
	padding: calc((100vh * .6 + 57px) / 2) 0;
Lillian Gray's avatar
Lillian Gray committed
}
  
.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%;
	/* keep in sync with height of dashboard */
	height: calc(100vh * .6);
}

#control {
	width: 100%;
	/* keep in sync with height of dashboard */
#aboutText, #howToUse {
	margin: 48px;
}

Lillian Gray's avatar
Lillian Gray committed
.about {
jiangxu's avatar
jiangxu committed
	line-height: 25px;
	text-align: justify;
	padding: 4%;
	text-indent: 6%;
	margin: auto;
	max-width: 700px;
}

.seriesSelection {
	width: 75%;
	margin: 0 auto;
}

.seriesSelectDropUp {
	position: relative;
	box-sizing: content-box;
.seriesSelectTitle, .seriesSelectOptions, .selectOption, .checkbox {
Lillian Gray's avatar
Lillian Gray committed
	cursor: pointer;
}

.seriesSelectTitle, .selectOption {
Lillian Gray's avatar
Lillian Gray committed
	padding: 5px 15px;
	height: 20px;
.seriesSelectTitle, .seriesSelectOptions {
Lillian Gray's avatar
Lillian Gray committed
    border: 1px solid #666;
	border-radius: 2px;
	background-color: #FFF;
}

.seriesSelectTitle {
	width: 120px;
	position: relative;
}

.seriesSelectTitle::after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 8px 10px 8px;
	border-color: transparent transparent #444 transparent;
	position: absolute;
	/* equals right padding of .seriesSelectTitle */
	right: 15px;
	/* center arrow vertically 50% - half of height */
	bottom: calc(50% - 4px);
.seriesSelectOptions {
Lillian Gray's avatar
Lillian Gray committed
	z-index:1;
	position: absolute;
	max-height: 180px;
	overflow-y: scroll;
	/* width of .seriesSelectTitle +30px */
	width: 150px;
.seriesSelectOptions::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.seriesSelectOptions::-webkit-scrollbar {
	width: 12px;
	background-color: #F5F5F5;
}

.seriesSelectOptions::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #555;
}

Lillian Gray's avatar
Lillian Gray committed
.selectOption {
	margin: 1px 0px;
.selectOption.active {
	background-color: #CF96A0;
}

#siteOptions {
	width: 80%;
	margin: 20px auto;
	align-items: center;
jiangxu's avatar
jiangxu committed
}

.csvButton, .getPermalink {
	padding: 3px;
	font-size: 16px;
	background-color: white;
	position: relative;
jiangxu's avatar
jiangxu committed
}

jiangxu's avatar
jiangxu committed
	width: 150px;
	height: 20px;
	font-size: 14px;
}

/***** Begin Tooltip Styles *****/
.tooltip, .tooltip::after {
	position: absolute;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.tooltip.inactive, .tooltip.inactive::after {
	visibility: hidden;
.tooltip.active, .tooltip.active::after {
	font-size: 12px;
	color: white;
	margin: 0 auto;
	width: 60%;
	height: 140%;
	line-height: 140%;
	border-radius: 5px;
	background-color: #9f2d42;
	bottom: 150%;
.tooltip::after {
	content: '';
	width: 0;
	height: 0;
	border: 8px solid transparent;
	border-top-color: #9f2d42;
	left: 50%;
	margin-left: -8px;
	top: 100%;
jiangxu's avatar
jiangxu committed
}

/***** End Tooltip Styles *****/

jiangxu's avatar
jiangxu committed
	margin-bottom: 20px;
	text-align: center;
	font-size: 10px;
	color: #888;