Skip to content

Commit

Permalink
buttons sliders
Browse files Browse the repository at this point in the history
  • Loading branch information
Geksanit committed Nov 24, 2017
1 parent 3b97c2e commit 29620bd
Show file tree
Hide file tree
Showing 21 changed files with 186 additions and 357 deletions.
Binary file added build/favicons/android-chrome-48x48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/favicons/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions build/favicons/browserconfig.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#da532c</TileColor>
</tile>
</msapplication>
</browserconfig>
Binary file added build/favicons/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/favicons/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/favicons/favicon.ico
Binary file not shown.
13 changes: 13 additions & 0 deletions build/favicons/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "",
"icons": [
{
"src": "/android-chrome-48x48.png",
"sizes": "48x48",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}
Binary file added build/favicons/mstile-150x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions build/favicons/safari-pinned-tab.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
94 changes: 33 additions & 61 deletions build/index.css

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

15 changes: 9 additions & 6 deletions build/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,26 +19,29 @@ <h1>Игра «Жизнь»</h1>
<table id="board"></table>
<div id="controls">
<div class="container">
<button class="standart-button standart-button_blue standart-button_small standart-button_blue-small">start</button>
<button class="standart-button standart-button_blue standart-button_small standart-button_blue-small">pause</button>
<button class="standart-button standart-button_blue standart-button_small standart-button_blue-small">clear</button>
<button class="standart-button js-standart-button standart-button_color-blue standart-button_size-small">start</button>
<button class="standart-button js-standart-button standart-button_color-blue standart-button_size-small">pause</button>
<button class="standart-button js-standart-button standart-button_color-blue standart-button_size-small">clear</button>
</div>
<div class="container">
<div class="label">speed</div>
<div class="slider">
<div class="slider__view">1</div><input class="slider" oninput="sliderInput(event)" type="range" min="1" max="10" value="1">
<div class="slider__view">1</div>
<input class="slider__input js-slider__input" type="range" min="1" max="10" value="1">
</div>
</div>
<div class="container">
<div class="label">width</div>
<div class="slider">
<div class="slider__view">10</div><input class="slider" oninput="sliderInput(event)" type="range" min="0" max="100" value="10">
<div class="slider__view">10</div>
<input class="slider__input js-slider__input" type="range" min="0" max="100" value="10">
</div>
</div>
<div class="container">
<div class="label">height</div>
<div class="slider">
<div class="slider__view">10</div><input class="slider" oninput="sliderInput(event)" type="range" min="0" max="100" value="10">
<div class="slider__view">10</div>
<input class="slider__input js-slider__input" type="range" min="0" max="100" value="10">
</div>
</div>
</div>
Expand Down
47 changes: 16 additions & 31 deletions build/index.js

Large diffs are not rendered by default.

Loading

0 comments on commit 29620bd

Please sign in to comment.