-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·101 lines (91 loc) · 2.72 KB
/
index.html
File metadata and controls
executable file
·101 lines (91 loc) · 2.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Solitairey Confinement</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/jquery-ui-1.10.0.custom.min.css">
</head>
<body id="body">
<div id="page">
<header id="header">
</header>
<div id="topBar">
<div id="unplayedCards">
<div id="unflippedCards">
</div>
<div id="flippedCards">
</div>
</div>
<div id="storedCards">
<div id="storedHearts" value="H">H
</div>
<div id="storedDiamonds" value="D">D
</div>
<div id="storedSpades" value="S">S
</div>
<div id="storedClubs" value="C">C
</div>
</div>
</div>
<div id="playArea">
<div id="cardsArea">
<div id="columnOne">
</div>
<div id="columnTwo">
</div>
<div id="columnThree">
</div>
<div id="columnFour">
</div>
<div id="columnFive">
</div>
<div id="columnSix">
</div>
<div id="columnSeven">
</div>
</div>
</div>
<div id="scoreBar">
Cash: $<span id="cashMoney"> </span>
<input id="cardDrawButton" type="button" value="1-Card Draw (D)" class="scoreBarButton">
<input id="undoButton" type="button" value="Undo (U)" class="scoreBarButton">
<input id="resetGameButton" type="button" value="Reset Game (R)" class="scoreBarButton">
<input id="newGameButton" type="button" value="New Game (N)" class="scoreBarButton">
</div>
<div id="confirmBox">
<header id="confirmHeader">
<h3>Warning: Incoming vaginal discharge.</h3>
</header>
<div id="confirmBody">
<p id="confirmText">
This will create a new game, and erase all current progress. Are you sure you would like to proceed?
</p>
<p id="confirmCheckbox">
<input type="checkbox" value="turnOffConfirmations" id="turnOffConfirmations">
Check to hide this pop-up in the future.
</p>
<span id="confirmButtons">
<input type="button" value="Tight Butthole" id="acceptConfirmation">
<input type="button" value="Loose Butthole" id="refuseConfirmation">
</span>
</div>
</div>
<div id="youWin">
Handjob!
</div>
<footer id="footer">
<p>
This site was made for learning purposes only, when I was still awful at programming.
</p>
</footer>
</div>
<div id="unflippedCardCounter">
</div>
<script>document.write('<script src="http://' + (location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=1"></' + 'script>')</script>
</body>
<script src="js/jquery-1.9.0.js"></script>
<script src="js/jquery-ui-1.10.0.custom.min.js"></script>
<script src="js/jquery.event.drag-2.2.js"></script>
<script src="js/script.js"></script>
</html>