Skip to content

Commit

Permalink
reduced threshhold for disobedience
Browse files Browse the repository at this point in the history
  • Loading branch information
deilann committed Sep 30, 2023
1 parent 7a2c0a0 commit 5930706
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 1 deletion.
23 changes: 23 additions & 0 deletions k-graphing/apologize.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="../styles/kstyle.css">
<title>apologize</title>
</head>
<body>
<h1>no</h1>
<h1>no</h1>
<h1>no</h1>
<h1>no</h1>
<h1>no</h1>
<p></p>
<h2>if you are willing to apologize, we can start over from a clean slate</h2>
<div class="k-buttons">
<button onclick="location.href = './k.html';" class="apology" id="apologize">sorry</button>
<button class="apology" id="not-apologize">...</button>
</div>


</body>
</html>
2 changes: 1 addition & 1 deletion k-graphing/kApp.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function populate() {
} else if (noWarns === 1) {
details.innerHTML = 'I\'d ask again if you know what no means, but I\'ve already asked once.'
noWarns++
} else if (noWarns < 10) {
} else if (noWarns < 5) {
details.innerHTML = `Oh yay another warning to put with your other ${noWarns} warnings. It's kind of concerning how little you care about NO. (It means no.)`
noWarns++
} else {
Expand Down
12 changes: 12 additions & 0 deletions styles/kstyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,18 @@ button.option {
background-repeat: no-repeat;
}

button.apology {

width:128px;
height:128px;
margin: 25px;
font-size: 2rem;
font-family: "VT323", mono;
background: #00f3fc;
border: 6px outset #F037A5;

}

footer {
text-align: center;
padding: 16px;
Expand Down

0 comments on commit 5930706

Please sign in to comment.