Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
byWulf committed Feb 17, 2019
0 parents commit cf3aa71
Show file tree
Hide file tree
Showing 45 changed files with 1,615 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Conways Game of Life
## Introduction
This project was created for a code competition of IT-Talents in January 2016.

See [Conway's Game of Life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life) on Wikipedia for more information about the showed algorithm.

![Alt Text](demo.gif)

## Usage
Open the `index.html` in your browser, adjust the settings and watch the Game of Life.
Binary file added Technische_Dokumentation.pdf
Binary file not shown.
64 changes: 64 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
html, body {
margin: 0;
padding: 0;
}
#container {
position: relative;
}

.cell {
position: absolute;
box-sizing: border-box;
border: 1px solid #fff;

background-color: #eee;
}
.cell.alive {
background-color: #333;
}

/* Settings */
#settings, #controls {
position: fixed;
right: 20px;
top: 20px;
background: #eee;
padding: 20px;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
#settings h3, #controls h3 {
margin-top: 0;
}
#settings dl.dl-horizontal dt {
width: 80px;
}
#settings dl.dl-horizontal dd {
margin-left: 100px;
}
.slider-handle, .slider-selection {
box-shadow: none;
background-image: none;
filter: none;
}
.infoButton {
text-align: center;
padding-left: 0;
padding-right: 0;
}
.padding-right--min {
padding-right: 10px;
}
.padding-left--min {
padding-left: 10px;
}
.padding-bottom--min {
padding-bottom: 10px;
}
form.form-horizontal .form-group:last-child {
margin-bottom: 0;
}
#bywulfLogo {
position: fixed;
right: 20px;
bottom: 20px;
}
Binary file added demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions externalLibs/css/bootstrap-slider.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions externalLibs/css/bootstrap.min.css

Large diffs are not rendered by default.

Binary file not shown.
Loading

0 comments on commit cf3aa71

Please sign in to comment.