diff --git a/Set-Algebra/index.html b/Set-Algebra/index.html index cd5d1a1..ae72e58 100644 --- a/Set-Algebra/index.html +++ b/Set-Algebra/index.html @@ -5,7 +5,7 @@ - + Set Algebra Calculator diff --git a/img/Boolean-Algebra.png b/img/Boolean-Algebra.png new file mode 100644 index 0000000..5dd962f Binary files /dev/null and b/img/Boolean-Algebra.png differ diff --git a/img/Set-Algebra.png b/img/Set-Algebra.png new file mode 100644 index 0000000..460ba6f Binary files /dev/null and b/img/Set-Algebra.png differ diff --git a/index.html b/index.html index e552cf0..dc979c4 100644 --- a/index.html +++ b/index.html @@ -5,10 +5,10 @@ + + CDM Calculator - Lab-1 - - + @@ -20,8 +20,8 @@

CDM

-

Set Algebra

-

Boolean Algebra

+

Set Algebra

+

Boolean Algebra

@@ -30,36 +30,18 @@
-

Sets

-
-
-

Set A =

-
-
-
-

Set B =

-
-
-
- + + +

Set Algebra Calculator

+
-

Problem

-

-
- - -
-
-
-

Result

-
-
-
-
Define sets: A, B, C, and Universal set. Then write the problem you need to solve.
+ + +

Boolean Algebra Calculator

+
-
diff --git a/style.css b/style.css index e0ac775..64175dd 100644 --- a/style.css +++ b/style.css @@ -248,6 +248,12 @@ input[type=button] { cursor: pointer; font-size: 18px; font-family: Myriad-R; + transition: 1s; +} + +input[type=button]:hover { + background-color: rgba(255, 255, 255, 0.7); + transition: 1s; } input[type=result] { @@ -323,6 +329,38 @@ input[type=result] { display: none; } + +/* ------------------Main-------------- */ + +.calculator { + display: flex; + flex-direction: column; + margin: 20px auto; + width: 90%; + max-width: 250px; + background-color: rgba(255, 255, 255, 0.3); + border-radius: 20px; + padding: 20px; + transition: 1s; +} + +.calculator img { + height: 100px; + margin: 20px auto; +} + +.calculator:hover { + background-color: rgba(255, 255, 255, 0.5); + transition: 1s; +} + +.calculator h1 { + margin: 0 auto; + text-align: center; + font-size: 23px; + max-width: 200px; +} + @media screen and (max-device-width: 650px) and (min-device-width: 0px) { .wrapper { flex-direction: column;