geostat/geo.css

190 wiersze
2.6 KiB
CSS
Czysty Zwykły widok Historia

@import url('https://fonts.googleapis.com/css?family=Lato|Special+Elite|Averia+Serif+Libre');
body {
2020-01-04 18:47:06 +00:00
padding: 0px;
margin: 0px;
background: white;
font-family: 'Lato', serif;
font-weight: normal;
font-size: 14px;
}
h1 {
2020-01-04 18:47:06 +00:00
text-align: center;
font-family: 'Averia Serif Libre', serif;
font-size: 34px;
font-weight: bold;
color: #BBB;
}
h2 {
2020-01-04 18:47:06 +00:00
text-align: center;
font-family: 'Special Elite', serif;
font-size: 26px;
font-weight: bold;
color: #48B;
}
div.basic_stats {
2019-11-10 19:59:21 +00:00
text-align: center;
2020-01-01 23:54:01 +00:00
padding-bottom: 20px;
2019-11-10 19:59:21 +00:00
}
2020-01-04 17:41:15 +00:00
span.value {
font-weight: bold;
}
2020-01-04 18:47:06 +00:00
a:link,
a:visited,
a:hover,
a:active {
color: #48B;
text-decoration: none;
}
a.fav {
background-image: url("rating-star.png");
background-repeat: no-repeat;
padding-left: 20px;
}
2020-01-04 18:47:06 +00:00
table,
.histogram,
2020-01-04 18:47:06 +00:00
.heatmap {
margin-left: auto;
margin-right: auto;
padding-bottom: 20px;
}
.heatmap {
display: block;
}
#footer {
text-align: center;
font-weight: normal;
2020-01-01 23:54:01 +00:00
color: #999;
font-size: 10px;
}
2020-01-04 18:47:06 +00:00
#footer a:link,
#footer a:visited,
#footer a:hover,
#footer a:active {
2020-01-01 23:54:01 +00:00
text-decoration: none;
font-weight: bold;
color: #666;
}
.list tr:nth-child(odd) {
background-color: #e2eaf1;
}
.list tr:nth-child(even) {
background-color: #f0f8ff;
}
.list th {
background-color: #fff;
font-weight: bold;
}
.list td {
color: #000;
padding-left: 10px;
padding-right: 10px;
}
.dt td {
background: #DDD;
2020-01-04 18:47:06 +00:00
color: #000;
text-align: center;
}
.dt th {
font-weight: bold;
width: 4em;
}
td.dt_zero {
color: #fff;
}
2020-01-04 18:47:06 +00:00
2020-01-01 23:16:47 +00:00
/* histogram */
.bar {
2020-01-04 18:47:06 +00:00
font-size: .8em;
line-height: 1;
text-transform: uppercase;
width: 500px;
height: 40px;
margin-left: 200px;
background: repeating-linear-gradient( to right, #ddd, #ddd 1px, #fff 1px, #fff 10%);
}
.bar:after {
2020-01-04 18:47:06 +00:00
content: "";
display: block;
background-color: #48B;
background-image: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5));
2020-01-04 18:47:06 +00:00
width: var(--percent);
margin-bottom: 10px;
height: 90%;
position: relative;
top: 50%;
transform: translateY(-50%);
}
.text {
2020-01-04 18:47:06 +00:00
/* font-weight: 600;*/
display: flex;
align-items: center;
height: 40px;
width: 200px;
background-color: white;
position: absolute;
left: 0;
justify-content: flex-end;
}
.histogram {
2020-01-04 18:47:06 +00:00
display: flex;
background-color: white;
flex-direction: column;
width: 100%;
max-width: 700px;
position: relative;
padding: 20px;
padding-top: 0;
}
2020-01-04 18:47:06 +00:00
2020-01-01 23:16:47 +00:00
/* collapsible */
2019-11-11 22:28:37 +00:00
details > summary {
2020-01-04 18:47:06 +00:00
cursor: pointer;
margin-left: auto;
margin-right: auto;
text-align: center;
outline: none;
2019-11-11 22:28:37 +00:00
}
details {
width: 700px;
margin-left: auto;
margin-right: auto;
2019-11-11 22:28:37 +00:00
}
details > p {
background: #f0f8ff;
font-size: 12px;
padding: 10px;
margin: 0;
}
details.histogram_others > summary {
font-weight: bold;
color: #48B;
2019-11-11 22:28:37 +00:00
}