From 4ba4ccc3fddb242251d5442c78aba14f43835035 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Mon, 22 Apr 2019 12:35:05 +0530 Subject: created index page --- touch/css/feedback_popup.css | 72 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100755 touch/css/feedback_popup.css (limited to 'touch/css/feedback_popup.css') diff --git a/touch/css/feedback_popup.css b/touch/css/feedback_popup.css new file mode 100755 index 0000000..1acf8ce --- /dev/null +++ b/touch/css/feedback_popup.css @@ -0,0 +1,72 @@ + +.popup_box { + background: #000; + width: 250px; + overflow: hidden; + position: fixed; + bottom: 0; + left: 0; + z-index:9; +} +.popup_box .header .min_btn { + background: url(../images/arrow.png) no-repeat 0px -9px; + float: right; + width: 15px; + height: 15px; + cursor: pointer; +} +.popup_box .header .max_btn { + background: url(../images/arrow.png) no-repeat 0px 3px; + float: right; + width: 15px; + height: 15px; + cursor: pointer; +} +.popup_box .header .min_max .min_btn { + background: url(../images/arrow.png) no-repeat 0px -9px; + float: right; + width: 15px; + height: 15px; + cursor: pointer; +} +.popup_box .header .closee_btn { + background: url(../images/close_btn.png) no-repeat 0px 0px; + float: right; + width: 15px; + height: 15px; + cursor: pointer; +} +.popup_box .header .closee_btn:hover { + background: url(../images/close_btn.png) no-repeat 0px -16px; + cursor: pointer; +} +.popup_box .header{ + padding: 5px 3px 5px 5px; + font: 11px 'lucida grande', tahoma, verdana, arial, sans-serif; + font-weight: bold; + color:#fff; + border-bottom:none; +} +.popup_box .header:hover{ + background-color: #000; +} +.popup_box .message_box { + background: #3071A9; + height: 32px; + overflow:hidden; + text-align: center; + font: 12px 'lucida grande', tahoma, verdana, arial, sans-serif; + font-weight: bold; + color:#fff; + padding-top: 10px; + cursor: default; +} +#cookie_box +{ + position: fixed; + display: none; + bottom: 0px; + z-index: 2000; + cursor: default; + +} -- cgit