summaryrefslogtreecommitdiff
path: root/day9/task5/static/css/FormStyle.css
diff options
context:
space:
mode:
authorAndrew <saintruler@gmail.com>2019-07-21 12:14:09 +0400
committerAndrew <saintruler@gmail.com>2019-07-21 12:14:09 +0400
commit2305ced85888a23f86ecfcdfb64a3b69c4997a4c (patch)
tree9d5cc4ad1c322ca2bf46b990498ad0a79d508aff /day9/task5/static/css/FormStyle.css
parent8c8712f0e6b165f6967f5d2958f300df6182296c (diff)
Переписан бекенд. Добавлена валидация при обновлении значений в ряду.
Удалена предыдущая версия приложения без vue.
Diffstat (limited to 'day9/task5/static/css/FormStyle.css')
-rw-r--r--day9/task5/static/css/FormStyle.css61
1 files changed, 0 insertions, 61 deletions
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