summaryrefslogtreecommitdiff
path: root/day9/task5/static/css
diff options
context:
space:
mode:
Diffstat (limited to 'day9/task5/static/css')
-rw-r--r--day9/task5/static/css/ContentBoxStyle.css26
-rw-r--r--day9/task5/static/css/FormStyle.css61
-rw-r--r--day9/task5/static/css/NewEntryStyle.css38
-rw-r--r--day9/task5/static/css/TableStyle.css22
4 files changed, 0 insertions, 147 deletions
diff --git a/day9/task5/static/css/ContentBoxStyle.css b/day9/task5/static/css/ContentBoxStyle.css
deleted file mode 100644
index abe9ee1..0000000
--- a/day9/task5/static/css/ContentBoxStyle.css
+++ /dev/null
@@ -1,26 +0,0 @@
-.contentBox {
- padding: 20px;
- width: 500px;
- height: 695px;
- background-color: #f0f0f0;
- border-radius: 10px;
- box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
-}
-
-.backgroundTint {
- width: 100vw;
- height: 100vh;
- background-color: rgba(0, 0, 0, 0.6);
-}
-
-.shown {
- display: inline;
- position: fixed;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
-}
-
-.hidden {
- display: none;
-} \ No newline at end of file
diff --git a/day9/task5/static/css/FormStyle.css b/day9/task5/static/css/FormStyle.css
deleted file mode 100644
index 63e51dd..0000000
--- a/day9/task5/static/css/FormStyle.css
+++ /dev/null
@@ -1,61 +0,0 @@
-.formRow {
- width: 100%;
- display: flex;
- flex-direction: column;
-}
-
-.formRow-label {
- font-size: 20px;
- color: #404040;
-}
-
-.formRow-input > input, .formRow-input > select {
- margin: 3px;
- width: 100%;
- border-radius: 5px;
- border: none;
- box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
- padding: 5px;
- font-size: 1.4em;
-
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
-}
-
-.formRow-input > input[readonly="readonly"] {
- background-color: #bebebe;
- color: #4b4b4b;
-}
-
-.formInput[type="date"], .formInput[type="time"] {
- padding: 5px;
- font-size: 1.6em;
-}
-
-.formRow-input > select:hover, .formRow-input > input:not([readonly="readonly"]):hover {
- background-color: #fbfbfb;
-}
-
-.formButtons {
- display: flex;
- flex-direction: row;
- margin-top: 5px;
-}
-
-.formButtons > button {
- margin: 5px;
- width: 50%;
- padding: 5px;
- border: none;
- border-radius: 7px;
- box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
-}
-
-.formButtons > button:hover {
- background-color: #dadada;
-}
-
-.formButtons > button:focus {
- background-color: #d5d5d5;
-} \ No newline at end of file
diff --git a/day9/task5/static/css/NewEntryStyle.css b/day9/task5/static/css/NewEntryStyle.css
deleted file mode 100644
index be2a4f0..0000000
--- a/day9/task5/static/css/NewEntryStyle.css
+++ /dev/null
@@ -1,38 +0,0 @@
-.fixedButton {
- overflow: hidden;
- white-space: nowrap;
-
- position: fixed;
-
- padding: 5px;
- border-radius: 50px;
- width: 100px;
- height: 100px;
- border: none;
- background-color: #2871e2;
- color: white;
- font-size: 45px;
-
- transition-property: width;
- transition-duration: 0.6s;
-}
-
-.fixedButton:hover {
- width: 300px;
- font-size: 30px;
- background-color: #286bd6;
-}
-
-.fixedButton:focus {
- background-color: #2861c3;
-}
-
-.newEntryBtn {
- bottom: 50px;
- left: 50px;
-}
-
-.uploadFileBtn {
- bottom: 175px;
- left: 50px;
-}
diff --git a/day9/task5/static/css/TableStyle.css b/day9/task5/static/css/TableStyle.css
deleted file mode 100644
index 0631fbe..0000000
--- a/day9/task5/static/css/TableStyle.css
+++ /dev/null
@@ -1,22 +0,0 @@
-table {
- border-spacing: 0;
- padding: 0;
- border: 1px solid black;
-}
-
-thead > tr > th {
- padding: 6px;
- font-size: 24px;
- background-color: #d5d5d5;
- border: 1px black solid;
-}
-
-td {
- padding: 8px;
- font-size: 21px;
- border: 1px black solid;
-}
-
-.editableField:hover {
- background-color: rgba(0, 0, 0, 0.1);
-}