Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions bcews_warning/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script type="text/javascript">
$(function(){

function setup(){
if(cpf){
cpf.setPinMode('["resetPin"],["setPinMode", "digital", 2, "INPUT"]');
}
}

function loop(){
$("h1#output").html(cpf);
setTimeout(loop, 100);
}

});
</script>
</head>
<body>
<h1 id="output">CPF Not Connected</h1>
</body>
</html>
23 changes: 23 additions & 0 deletions bcews_warning/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
*{
margin: 0;
padding: 0;
font-family: "Segoe UI Light", "Century Gothic", sans-serif;
}

h1#output{
display: block;
background: rgb(255,50,20);
color: white;
font-size: 5.5em;
text-align: center;
}

/*

@media screen and (min-width: 640px){
h1#output{
width: 1%;
}
}

*/