diff options
| author | Ralph Amissah <ralph.amissah@gmail.com> | 2022-01-29 23:58:45 -0500 | 
|---|---|---|
| committer | Ralph Amissah <ralph.amissah@gmail.com> | 2022-01-31 20:59:14 -0500 | 
| commit | d3f71341cdcff17e0d0a82d1f7ac97255ff90bbb (patch) | |
| tree | 01274c6b8ba812845d413aef611ed84b0c1fed49 /sundry | |
| parent | xmls css, start to consider mobile usability (diff) | |
xmls css, stepwise changes
Diffstat (limited to 'sundry')
| -rw-r--r-- | sundry/spine_search_cgi/src/spine_search.d | 32 | ||||
| -rwxr-xr-x | sundry/spine_search_cgi/src/spine_search.d_ | 30 | 
2 files changed, 47 insertions, 15 deletions
| diff --git a/sundry/spine_search_cgi/src/spine_search.d b/sundry/spine_search_cgi/src/spine_search.d index d8ead11..3e0b3fc 100644 --- a/sundry/spine_search_cgi/src/spine_search.d +++ b/sundry/spine_search_cgi/src/spine_search.d @@ -583,6 +583,19 @@ void cgi_function_intro(Cgi cgi) {        color                    : #000000;        background-color         : #F9F9AA;      } +    a.matched_ocn:link { +      color                    : #003399; +      text-decoration          : none; +    } +    a.matched_ocn:visited { +      color                    : #003399; +      text-decoration          : none; +    } +    a.matched_ocn:hover { +      color                    : #000000; +      background-color         : #F9F9AA; +      font-size                : 100%%; +    }      a.lnkocn:link {        color                    : #777777;        text-decoration          : none; @@ -593,7 +606,7 @@ void cgi_function_intro(Cgi cgi) {      }      a.lnkocn:hover {        color                    : #777777; -      font-size                : 15px; +      font-size                : 100%%;      }      a:hover img {        background-color         : #FFFFFF; @@ -627,13 +640,16 @@ void cgi_function_intro(Cgi cgi) {        color                    : #000000;        background-color         : #FFFF48;      } +    input, select, textarea { +      font-size                : 150%%; +    }      input[type="text"] { -      font-size:120%%; -      line-height              : 120%%; +      font-size                : 150%%; +      line-height              : 150%%;      }      button[type="submit"] { -      font-size                : 120%%; -      line-height              : 120%%; +      font-size                : 150%%; +      line-height              : 150%%;      }      p.norm { }      p.center { text-align      : center; } @@ -1117,7 +1133,7 @@ void cgi_function_intro(Cgi cgi) {        text-align               : left;      }      .tiny, .tiny_left, .tiny_right, .tiny_center { -      font-size                : 10px; +      font-size                : 75%%;        margin-top               : 0px;        margin-bottom            : 0px;        color                    : #EEEEEE; @@ -1184,8 +1200,8 @@ void cgi_function_intro(Cgi cgi) {        white-space              : -o-pre-wrap;        background-color         : #555555;        color                    : #DDDDDD; -      font-size                : 95%%; -      line-height              : 100%%; +      font-size                : 120%%; +      line-height              : 120%%;      }      pre.codeline::before {        counter-reset            : linenum; diff --git a/sundry/spine_search_cgi/src/spine_search.d_ b/sundry/spine_search_cgi/src/spine_search.d_ index e721699..6a673bc 100755 --- a/sundry/spine_search_cgi/src/spine_search.d_ +++ b/sundry/spine_search_cgi/src/spine_search.d_ @@ -585,6 +585,19 @@ void cgi_function_intro(Cgi cgi) {        color                    : #000000;        background-color         : #F9F9AA;      } +    a.matched_ocn:link { +      color                    : #003399; +      text-decoration          : none; +    } +    a.matched_ocn:visited { +      color                    : #003399; +      text-decoration          : none; +    } +    a.matched_ocn:hover { +      color                    : #000000; +      background-color         : #F9F9AA; +      font-size                : 100%%; +    }      a.lnkocn:link {        color                    : #777777;        text-decoration          : none; @@ -629,13 +642,16 @@ void cgi_function_intro(Cgi cgi) {        color                    : #000000;        background-color         : #FFFF48;      } +    input, select, textarea { +      font-size                : 150%%; +    }      input[type="text"] { -      font-size                : 120%%; -      line-height              : 120%%; +      font-size                : 150%%; +      line-height              : 150%%;      }      button[type="submit"] { -      font-size                : 120%%; -      line-height              : 120%%; +      font-size                : 150%%; +      line-height              : 150%%;      }      p.norm { }      p.center { text-align      : center; } @@ -1119,7 +1135,7 @@ void cgi_function_intro(Cgi cgi) {        text-align               : left;      }      .tiny, .tiny_left, .tiny_right, .tiny_center { -      font-size                : 12px; +      font-size                : 75%%;        margin-top               : 0px;        margin-bottom            : 0px;        color                    : #EEEEEE; @@ -1186,8 +1202,8 @@ void cgi_function_intro(Cgi cgi) {        white-space              : -o-pre-wrap;        background-color         : #555555;        color                    : #DDDDDD; -      font-size                : 95%%; -      line-height              : 100%%; +      font-size                : 120%%; +      line-height              : 120%%;      }      pre.codeline::before {        counter-reset            : linenum; | 
