-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ce61861
commit 22e8d8f
Showing
70 changed files
with
560 additions
and
250 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,141 @@ | ||
body { | ||
background-color: #1E1E1F; | ||
font-family: monospace; | ||
color: white; | ||
font-family:sans-serif; | ||
color: #eaeaea; | ||
user-select: none; | ||
} | ||
button { | ||
background-color: #701616; | ||
background-color: #1879a0; | ||
border: none; | ||
color: white; | ||
color: #eaeaea; | ||
padding: 15px 32px; | ||
text-align: center; | ||
text-decoration: none; | ||
display: inline-block; | ||
font-size: 16px; | ||
|
||
} | ||
a { | ||
color: #1879a0; | ||
} | ||
.next { | ||
bottom:20px; | ||
right:20px; | ||
position:absolute; | ||
} | ||
.nextfin { | ||
bottom:20px; | ||
right:20px; | ||
position:absolute; | ||
display: none; | ||
} | ||
#ui { | ||
position:absolute; | ||
height: 92%; | ||
width: 90%; | ||
padding: 20px; | ||
} | ||
|
||
#welcome { | ||
|
||
} | ||
|
||
#moduletype { | ||
display: none; | ||
} | ||
#nomodule { | ||
display: none; | ||
} | ||
#serial { | ||
display: none; | ||
} | ||
#version { | ||
display: none; | ||
} | ||
#checkversion { | ||
display: none; | ||
} | ||
#status { | ||
display: none; | ||
} | ||
#showoutput { | ||
font-size: .9em; | ||
text-decoration: underline; | ||
color: #1879a0; | ||
} | ||
#output { | ||
display: none; | ||
width: 535px; | ||
height: 380px; | ||
overflow: auto; | ||
user-select: all; | ||
} | ||
#releasenotes { | ||
width: 535px; | ||
height: 380px; | ||
overflow:auto; | ||
user-select: text; | ||
} | ||
.meter { | ||
height: 20px; /* Can be anything */ | ||
position: relative; | ||
background: #353535; | ||
-moz-border-radius: 2px; | ||
-webkit-border-radius: 2px; | ||
border-radius: 2px; | ||
padding: 2px; | ||
box-shadow: inset 0 -1px 1px rgba(255,255,255,0.3); | ||
} | ||
|
||
.meter > span { | ||
display: block; | ||
height: 100%; | ||
border-top-right-radius: 2px; | ||
border-bottom-right-radius: 2px; | ||
border-top-left-radius: 2px; | ||
border-bottom-left-radius: 2px; | ||
background-color: #1879a0; | ||
background-image: linear-gradient( | ||
center bottom, | ||
#0f516b 37%, | ||
#1879a0 69% | ||
); | ||
box-shadow: | ||
inset 0 2px 9px rgba(255,255,255,0.3), | ||
inset 0 -2px 6px rgba(0,0,0,0.4); | ||
position: relative; | ||
overflow: hidden; | ||
} | ||
|
||
.sigContain { | ||
background:transparent; | ||
overflow:hidden; | ||
width:100%; height:100vh; | ||
} | ||
.sigContain, .signal { | ||
overflow: hidden; | ||
position: absolute; | ||
top: 0; bottom: 0; left: 0; right: 0; | ||
} | ||
.signal { | ||
border:2px solid #009fdb; | ||
border-radius:300px; | ||
top:200px; width:400px; height:400px; | ||
left:calc(50% - 200px); | ||
margin:0; | ||
opacity:0; | ||
position:absolute; | ||
z-index: -1; | ||
} | ||
.s1 {animation: pulsate 8s ease-out 0s infinite; } | ||
.s2 {animation: pulsate 8s ease-out 2s infinite;} | ||
.s3 {animation: pulsate 8s ease-out 4s infinite;} | ||
.s4 {animation: pulsate 8s ease-out 6s infinite;} | ||
|
||
@keyframes pulsate { | ||
0% { transform:scale(0.1); opacity: 0.0;} | ||
20% { opacity:0.2;} | ||
50% { opacity:0.4;} | ||
80% { opacity:0.1;} | ||
100% { transform:scale(5); opacity:0;} | ||
} |
Oops, something went wrong.