From ccfb3857d7e94d2c9626a434052567e53db28f4f Mon Sep 17 00:00:00 2001 From: Eugene Nes Date: Sun, 11 Feb 2018 17:41:32 +0300 Subject: [PATCH 1/3] Add new sort --- sorting/quicksort.html | 76 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 sorting/quicksort.html diff --git a/sorting/quicksort.html b/sorting/quicksort.html new file mode 100644 index 0000000..e8456a7 --- /dev/null +++ b/sorting/quicksort.html @@ -0,0 +1,76 @@ + + + + + Quicksort + + + + + + \ No newline at end of file From b50962193cfe014aed0534a323bdd0e71d46d47f Mon Sep 17 00:00:00 2001 From: Eugene Nes Date: Wed, 14 Feb 2018 18:25:52 +0300 Subject: [PATCH 2/3] Add Calculator --- homework/2-calculator/EugeneNes/index.css | 70 ++++++++++++++++++++++ homework/2-calculator/EugeneNes/index.html | 41 +++++++++++++ 2 files changed, 111 insertions(+) create mode 100644 homework/2-calculator/EugeneNes/index.css create mode 100644 homework/2-calculator/EugeneNes/index.html diff --git a/homework/2-calculator/EugeneNes/index.css b/homework/2-calculator/EugeneNes/index.css new file mode 100644 index 0000000..fc47910 --- /dev/null +++ b/homework/2-calculator/EugeneNes/index.css @@ -0,0 +1,70 @@ + +body{ + background: #22b2ec; + font-family: 'Roboto', sans-serif; + font-weight: 300; + font-size: 25px; + color: #adb5b8; +} +.body{ + display: flex; + flex-direction: column; + margin: auto; + overflow: hidden; + margin-top: 25vh; + width: 300px; + height: 400px; + background-color: #fff; + border-radius: 10px; + box-shadow: 0 60px 60px -40px rgba(0, 0, 0, 0.25); + +} +.input{ + display: flex; + flex-direction: column; + justify-content: center; + align-items: flex-end; + height: 30%; + background-color: #4b5665; + padding: 0; + border: none; + margin: 0; +} +.input span{ + margin-right: 20px; +} +.bottomtext{ + font-size: 50px; + font-weight: 400; + color: #fff; + margin-left: 15px; +} +.btns{ + display: flex; + height: 70%; + width: 100%; + flex-wrap: wrap; + padding: 0; + margin: auto; + border: none; +} +.btn{ + display: flex; + align-items: center; + justify-content: center; + width: 25%; + box-sizing: border-box; + height: 20%; + background: #fff; + border: 1px solid #f2f2f2; + padding: 0; + transition: 0.1s; +} +.btn:hover{ + background-color: #3f3f3f; + color: #fff; + border: none; +} +.lesscolor{ + color: #54656C; +} diff --git a/homework/2-calculator/EugeneNes/index.html b/homework/2-calculator/EugeneNes/index.html new file mode 100644 index 0000000..29a0994 --- /dev/null +++ b/homework/2-calculator/EugeneNes/index.html @@ -0,0 +1,41 @@ + + + + + Calculator + + + + +
+
+
+ 4x12= + 48 +
+
+
AC
+
(
+
)
+
%
+
7
+
8
+
9
+
÷
+
4
+
5
+
6
+
×
+
1
+
2
+
3
+
+
.
+
0
+
=
+
+
+
+
+
+ + \ No newline at end of file From e494866297825b1af4cc93ec0a1571f843e290ea Mon Sep 17 00:00:00 2001 From: Eugene Nes Date: Fri, 16 Feb 2018 22:30:19 +0300 Subject: [PATCH 3/3] Delete file quicksort --- sorting/quicksort.html | 76 ------------------------------------------ 1 file changed, 76 deletions(-) delete mode 100644 sorting/quicksort.html diff --git a/sorting/quicksort.html b/sorting/quicksort.html deleted file mode 100644 index e8456a7..0000000 --- a/sorting/quicksort.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - Quicksort - - - - - - \ No newline at end of file