modified: data/plot.gp
modified: html/style.css modified: index.sh
This commit is contained in:
+41
-1
@@ -38,10 +38,14 @@ body {
|
||||
position: relative;
|
||||
padding-left: 7px;
|
||||
padding-right: 7px;
|
||||
box-shadow: 0 0 4px rgba(36,139,204,0.4), 0 0 8px rgba(36,139,204,0.3), 0 0 16px rgba(36,139,204,0.2);
|
||||
text-shadow: 0 0 2px #888, 0 0 4px #888, 0 0 8px #888;
|
||||
}
|
||||
|
||||
.popup h5:hover {
|
||||
background-color: #248bcc;
|
||||
box-shadow: 0 0 4px rgba(36,139,204,0.7), 0 0 8px rgba(36,139,204,0.6), 0 0 16px rgba(36,139,204,0.5);
|
||||
text-shadow: 0 0 2px #fff, 0 0 4px #fff, 0 0 8px #fff;
|
||||
}
|
||||
|
||||
.popup {
|
||||
@@ -114,6 +118,7 @@ body {
|
||||
border-radius: 25px 0 0 25px;
|
||||
float: left;
|
||||
width: 100%;
|
||||
box-shadow: 0 0 4px rgba(36,139,204,0.4), 0 0 8px rgba(36,139,204,0.3), 0 0 16px rgba(36,139,204,0.2);
|
||||
}
|
||||
|
||||
.header {
|
||||
@@ -146,6 +151,7 @@ body {
|
||||
border-radius: 15px;
|
||||
background-color: #101010;
|
||||
background: linear-gradient(to top, rgba(10,10,10,0), rgba(36,139,204,1));
|
||||
box-shadow: 0 0 4px rgba(36,139,204,0.4), 0 0 8px rgba(36,139,204,0.3), 0 0 16px rgba(36,139,204,0.2);
|
||||
}
|
||||
|
||||
.current .update {
|
||||
@@ -154,13 +160,15 @@ body {
|
||||
font-weight: normal;
|
||||
color: white;
|
||||
font-size: 15px;
|
||||
text-shadow: 0 0 2px #000, 0 0 4px #000, 0 0 8px #000;
|
||||
}
|
||||
|
||||
.current .wttr {
|
||||
margin: 0;
|
||||
color: #101010;
|
||||
color: #fff;
|
||||
font-size: 25px;
|
||||
font-weight: bold;
|
||||
text-shadow: 0 0 2px #000, 0 0 4px #000, 0 0 8px #000;
|
||||
}
|
||||
|
||||
.current .danger {
|
||||
@@ -168,6 +176,7 @@ body {
|
||||
text-align: center;
|
||||
color: white;
|
||||
font-size: 15px;
|
||||
text-shadow: 0 0 2px #000, 0 0 4px #000, 0 0 8px #000;
|
||||
}
|
||||
|
||||
.current .level {
|
||||
@@ -202,6 +211,23 @@ body {
|
||||
border-radius: 25px 0px 25px 25px;
|
||||
}
|
||||
|
||||
.data.plot {
|
||||
text-shadow: 0 0 2px #248bcc, 0 0 4px #248bcc, 0 0 8px #248bcc;
|
||||
}
|
||||
|
||||
.data::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0; left: 0; right: 0; bottom: 0;
|
||||
border-bottom: 1px solid #248bcc;
|
||||
border-radius: 25px 0 25px 25px;
|
||||
filter: drop-shadow(0 0 2px #248bcc)
|
||||
drop-shadow(0 0 4px #248bcc)
|
||||
drop-shadow(0 0 8px #248bcc);
|
||||
pointer-events: none;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.plot {
|
||||
background-repeat: no-repeat;
|
||||
background-size: 102% 100%;
|
||||
@@ -222,6 +248,7 @@ body {
|
||||
padding-left: 10px;
|
||||
margin-top: 30px;
|
||||
margin-bottom: 0;
|
||||
text-shadow: 0 0 2px #000, 0 0 4px #000, 0 0 8px #888;
|
||||
}
|
||||
|
||||
|
||||
@@ -392,7 +419,20 @@ body {
|
||||
padding-top: 0;
|
||||
padding-bottom: 0px;
|
||||
font-size: 13px;
|
||||
position: relative;
|
||||
}
|
||||
.data::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0; left: 0; right: 0; bottom: 0;
|
||||
border-bottom: 1px solid #248bcc;
|
||||
border-radius: 25px 0 25px 25px;
|
||||
filter: drop-shadow(0 0 2px #248bcc)
|
||||
drop-shadow(0 0 4px #248bcc)
|
||||
drop-shadow(0 0 8px #248bcc);
|
||||
pointer-events: none;
|
||||
z-index: -1;
|
||||
}
|
||||
.datapoint {
|
||||
margin: 0;
|
||||
padding-bottom: 0px;
|
||||
|
||||
Reference in New Issue
Block a user