diff options
| author | terminaldweller <thabogre@gmail.com> | 2022-04-09 19:22:50 +0000 | 
|---|---|---|
| committer | terminaldweller <thabogre@gmail.com> | 2022-04-09 19:22:50 +0000 | 
| commit | 0daa4e11322904f7659de420f301d867ae3fea42 (patch) | |
| tree | 1b5967d255abe36ad321bd85c65433c8ea158d0b | |
| parent | the ipv6 socks5 proxy is working now (diff) | |
| download | scripts-0daa4e11322904f7659de420f301d867ae3fea42.tar.gz scripts-0daa4e11322904f7659de420f301d867ae3fea42.zip | |
update
| -rw-r--r-- | stylus/archwiki_wide.css | 33 | ||||
| -rw-r--r-- | stylus/cppreference_wide.css | 28 | ||||
| -rw-r--r-- | stylus/voiddocs_wide.css | 12 | 
3 files changed, 50 insertions, 23 deletions
| diff --git a/stylus/archwiki_wide.css b/stylus/archwiki_wide.css index e6e947a..d3985a1 100644 --- a/stylus/archwiki_wide.css +++ b/stylus/archwiki_wide.css @@ -1,59 +1,58 @@ -@-moz-document url-prefix("https://wiki.archlinux.org") { - -.mw-body { +@-moz-document url-prefix("https://wiki.archlinux.org") +{ +  .mw-body {      margin: 10px;      border: 10px;      padding: 10px;      width: 90%;      max-width: 100%; -} +  } -.mw-content-container { +  .mw-content-container {      margin: 10px;      border: 10px;      padding: 10px;      width: 100%;      max-width: 100%; -} +  } -.mw-parser-output { +  .mw-parser-output {      margin: 10px;      border: 10px;      padding: 10px;      width: 100%;      max-width: 100%; -} +  } -.vector-body { +  .vector-body {      margin: 10px;      border: 10px;      padding: 10px;      width: 100%;      max-width: 100%; -} +  } -#mw-content-text { +  #mw-content-text {      margin: 10px;      border: 10px;      padding: 10px;      width: 100%;      max-width: 100%; -} +  } -#content { +  #content {      margin: 10px;      border: 10px;      padding: 10px;      width: 100%;      max-width: 100%; -} +  } -div { +  div {      margin: 0px;      border: 0px;      padding: 0px;      width: 90%;      max-width: 100%; -} - +  }  } diff --git a/stylus/cppreference_wide.css b/stylus/cppreference_wide.css new file mode 100644 index 0000000..38f9b7b --- /dev/null +++ b/stylus/cppreference_wide.css @@ -0,0 +1,28 @@ +@-moz-document domain("cppreference.com") { +  body { +    width: 95%; +    max-width: 95%; +    font-size: 19px; +    padding: 1%; +    border: thick; +    margin: 1%; +  } + +  head { +    width: 100%; +    max-width: 100%; +    font-size: 19px; +    padding: 0px; +    border: 0px; +    margin: 0px; +  } + +  div#content { +    width: 99%; +    max-width: 99%; +    margin-right: 1%; +    margin-left: 1%; +    padding: 1%; +    border: none; +  } +} diff --git a/stylus/voiddocs_wide.css b/stylus/voiddocs_wide.css index b5db32d..4488e3d 100644 --- a/stylus/voiddocs_wide.css +++ b/stylus/voiddocs_wide.css @@ -1,8 +1,8 @@  @-moz-document domain("docs.voidlinux.org") { - -search-wrapper, #page-wrapper main { -  width: 100%; -  max-width: 90%; -  margin: 0 auto; -} +  search-wrapper, +  #page-wrapper main { +    width: 100%; +    max-width: 90%; +    margin: 0 auto; +  }  } | 
