From 480de70f60ae666a474ea623e01c9338f4d66038 Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Tue, 26 Dec 2017 11:02:40 -0100 Subject: nextant v2 Signed-off-by: Maxence Lange --- css/admin.css | 39 +++++++++++++++++++++++++++++ css/fullnextsearch.css | 37 +++++++++++++++++++++++++++ css/nextsearch.css | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++ css/personal.css | 0 4 files changed, 144 insertions(+) create mode 100644 css/admin.css create mode 100644 css/fullnextsearch.css create mode 100644 css/nextsearch.css create mode 100644 css/personal.css (limited to 'css') diff --git a/css/admin.css b/css/admin.css new file mode 100644 index 0000000..1c5a7dd --- /dev/null +++ b/css/admin.css @@ -0,0 +1,39 @@ + +.hidden { + display: none; +} + +EM { + font-size: 12px; +} + +.div-table { + display: table; + width: auto; + border-spacing: 5px; +} + +.div-table-row { + display: table-row; + width: auto; + height: 65px; + clear: both; +} + +.div-table-col { + float: left; + display: table-column; + width: 300px; +} + +.div-table-col-left { + width: 500px; +} + +SELECT, INPUT { + width: 350px; +} + +INPUT.small { + width: 150px; +} \ No newline at end of file diff --git a/css/fullnextsearch.css b/css/fullnextsearch.css new file mode 100644 index 0000000..e8e8004 --- /dev/null +++ b/css/fullnextsearch.css @@ -0,0 +1,37 @@ +#search_header { + height: 200px; + width: 100%; + text-align: center; + background-color: #f6f6f6; + border-bottom: solid #d7d7d7 1px; +} + +#search_input { + width: 400px; + position: relative; + top: 50%; + transform: perspective(1px) translateY(-50%); +} + +#search_result { + margin: 50px 80px 0 50px; +} + +.provider_result { + margin-left: 30px; +} + +#noresult { + font-style: italic; + position: absolute; + left: 100px; +} + +.provider_name { + font-size: 16px; + font-weight: bold; + letter-spacing: 5px; + color: #8b8b8b; + margin-bottom: 8px; +} + diff --git a/css/nextsearch.css b/css/nextsearch.css new file mode 100644 index 0000000..123b9e5 --- /dev/null +++ b/css/nextsearch.css @@ -0,0 +1,68 @@ + +.provider_result { + font-style: italic; +} + +.result_entry_default { + height: 50px; + width: 100%; + display: inline-block; + background: #eeeeee; + padding-bottom: 2px; +} + +.result_entry_left { + float: left; + position: relative; + top: 50%; + margin-left: 10px; + transform: perspective(1px) translateY(-50%); +} + +.result_entry_right { + float: right; + margin-right: 10px; + position: relative; + top: 50%; + transform: perspective(1px) translateY(-50%); +} + +.result_entry_default #title { + font-weight: bold; + height: 14px; +} + +.result_entry_default #line1, .result_entry_default #line2 { + color: #333333; + font-size: 11px; + height: 12px; + font-style: italic; +} + +.result_entry_default #score { + font-weight: bold; + font-style: italic; +} + +.next_search_div { + position: relative; + width: 250px; + height: 36px; + margin-right: 20px; +} + +.icon-fullnextsearch, .icon-close-fullnextsearch { + position: absolute; + right: 10px; + top: 10px; + cursor: pointer; +} + +#next_search_input { + background: #fffc; + width: 212px; + height: 30px; + margin: 2px !important; +} + + diff --git a/css/personal.css b/css/personal.css new file mode 100644 index 0000000..e69de29 -- cgit v1.2.3