๐Ÿ’พ Archived View for source.community โ€บ jeffdecola โ€บ my-go-tools โ€บ blob โ€บ develop โ€บ docs โ€บ stylesheetโ€ฆ captured on 2022-01-08 at 13:45:41. Gemini links have been rewritten to link to archived content

View Raw

More Information

โฌ…๏ธ Previous capture (2021-12-17)

โžก๏ธ Next capture (2023-07-10)

๐Ÿšง View Differences

-=-=-=-=-=-=-

                                                         .
,-. ,-. . . ,-. ,-. ,-.    ,-. ,-. ,-,-. ,-,-. . . ,-. . |- . .
`-. | | | | |   |   |-'    |   | | | | | | | | | | | | | |  | |
`-' `-' `-^ '   `-' `-' :: `-' `-' ' ' ' ' ' ' `-^ ' ' ' `' `-|
                                                             /|
                                                            `-'

Profile for jeffdecola

jeffdecola / my-go-tools

git clone https://source.community/jeffdecola/my-go-tools.git

Branches

Log

Tree

/docs/stylesheets/stylesheet.css (develop)

โ†‘ /docs/stylesheets

blob

View raw contents of /docs/stylesheets/stylesheet.css (develop)

โ”€โ”€โ”€โ”€โ•ฎ
   1โ”‚ * {
   2โ”‚   box-sizing: border-box; }
   3โ”‚ 
   4โ”‚ body {
   5โ”‚   padding: 0;
   6โ”‚   margin: 0;
   7โ”‚   font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
   8โ”‚   font-size: 16px;
   9โ”‚   line-height: 1.5;
  10โ”‚   color: #606c71; }
  11โ”‚ 
  12โ”‚ a {
  13โ”‚   color: #1e6bb8;
  14โ”‚   text-decoration: none; }
  15โ”‚   a:hover {
  16โ”‚     text-decoration: underline; }
  17โ”‚ 
  18โ”‚ .btn {
  19โ”‚   display: inline-block;
  20โ”‚   margin-bottom: 1rem;
  21โ”‚   color: rgba(255, 255, 255, 0.7);
  22โ”‚   background-color: rgba(255, 255, 255, 0.08);
  23โ”‚   border-color: rgba(255, 255, 255, 0.2);
  24โ”‚   border-style: solid;
  25โ”‚   border-width: 1px;
  26โ”‚   border-radius: 0.3rem;
  27โ”‚   transition: color 0.2s, background-color 0.2s, border-color 0.2s; }
  28โ”‚   .btn + .btn {
  29โ”‚     margin-left: 1rem; }
  30โ”‚ 
  31โ”‚ .btn:hover {
  32โ”‚   color: rgba(255, 255, 255, 0.8);
  33โ”‚   text-decoration: none;
  34โ”‚   background-color: rgba(255, 255, 255, 0.2);
  35โ”‚   border-color: rgba(255, 255, 255, 0.3); }
  36โ”‚ 
  37โ”‚ @media screen and (min-width: 64em) {
  38โ”‚   .btn {
  39โ”‚     padding: 0.75rem 1rem; } }
  40โ”‚ 
  41โ”‚ @media screen and (min-width: 42em) and (max-width: 64em) {
  42โ”‚   .btn {
  43โ”‚     padding: 0.6rem 0.9rem;
  44โ”‚     font-size: 0.9rem; } }
  45โ”‚ 
  46โ”‚ @media screen and (max-width: 42em) {
  47โ”‚   .btn {
  48โ”‚     display: block;
  49โ”‚     width: 100%;
  50โ”‚     padding: 0.75rem;
  51โ”‚     font-size: 0.9rem; }
  52โ”‚     .btn + .btn {
  53โ”‚       margin-top: 1rem;
  54โ”‚       margin-left: 0; } }
  55โ”‚ 
  56โ”‚ .page-header {
  57โ”‚   color: #fff;
  58โ”‚   text-align: center;
  59โ”‚   background-color: #159957;
  60โ”‚   background-image: linear-gradient(120deg, #155799, #159957); }
  61โ”‚ 
  62โ”‚ @media screen and (min-width: 64em) {
  63โ”‚   .page-header {
  64โ”‚     padding: 5rem 6rem; } }
  65โ”‚ 
  66โ”‚ @media screen and (min-width: 42em) and (max-width: 64em) {
  67โ”‚   .page-header {
  68โ”‚     padding: 3rem 4rem; } }
  69โ”‚ 
  70โ”‚ @media screen and (max-width: 42em) {
  71โ”‚   .page-header {
  72โ”‚     padding: 2rem 1rem; } }
  73โ”‚ 
  74โ”‚ .project-name {
  75โ”‚   margin-top: 0;
  76โ”‚   margin-bottom: 0.1rem; }
  77โ”‚ 
  78โ”‚ @media screen and (min-width: 64em) {
  79โ”‚   .project-name {
  80โ”‚     font-size: 3.25rem; } }
  81โ”‚ 
  82โ”‚ @media screen and (min-width: 42em) and (max-width: 64em) {
  83โ”‚   .project-name {
  84โ”‚     font-size: 2.25rem; } }
  85โ”‚ 
  86โ”‚ @media screen and (max-width: 42em) {
  87โ”‚   .project-name {
  88โ”‚     font-size: 1.75rem; } }
  89โ”‚ 
  90โ”‚ .project-tagline {
  91โ”‚   margin-bottom: 2rem;
  92โ”‚   font-weight: normal;
  93โ”‚   opacity: 0.7; }
  94โ”‚ 
  95โ”‚ @media screen and (min-width: 64em) {
  96โ”‚   .project-tagline {
  97โ”‚     font-size: 1.25rem; } }
  98โ”‚ 
  99โ”‚ @media screen and (min-width: 42em) and (max-width: 64em) {
 100โ”‚   .project-tagline {
 101โ”‚     font-size: 1.15rem; } }
 102โ”‚ 
 103โ”‚ @media screen and (max-width: 42em) {
 104โ”‚   .project-tagline {
 105โ”‚     font-size: 1rem; } }
 106โ”‚ 
 107โ”‚ .main-content :first-child {
 108โ”‚   margin-top: 0; }
 109โ”‚ .main-content img {
 110โ”‚   max-width: 100%; }
 111โ”‚ .main-content h1, .main-content h2, .main-content h3, .main-content h4, .main-content h5, .main-content h6 {
 112โ”‚   margin-top: 2rem;
 113โ”‚   margin-bottom: 1rem;
 114โ”‚   font-weight: normal;
 115โ”‚   color: #159957; }
 116โ”‚ .main-content p {
 117โ”‚   margin-bottom: 1em; }
 118โ”‚ .main-content code {
 119โ”‚   padding: 2px 4px;
 120โ”‚   font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
 121โ”‚   font-size: 0.9rem;
 122โ”‚   color: #383e41;
 123โ”‚   background-color: #f3f6fa;
 124โ”‚   border-radius: 0.3rem; }
 125โ”‚ .main-content pre {
 126โ”‚   padding: 0.8rem;
 127โ”‚   margin-top: 0;
 128โ”‚   margin-bottom: 1rem;
 129โ”‚   font: 1rem Consolas, "Liberation Mono", Menlo, Courier, monospace;
 130โ”‚   color: #567482;
 131โ”‚   word-wrap: normal;
 132โ”‚   background-color: #f3f6fa;
 133โ”‚   border: solid 1px #dce6f0;
 134โ”‚   border-radius: 0.3rem; }
 135โ”‚   .main-content pre > code {
 136โ”‚     padding: 0;
 137โ”‚     margin: 0;
 138โ”‚     font-size: 0.9rem;
 139โ”‚     color: #567482;
 140โ”‚     word-break: normal;
 141โ”‚     white-space: pre;
 142โ”‚     background: transparent;
 143โ”‚     border: 0; }
 144โ”‚ .main-content .highlight {
 145โ”‚   margin-bottom: 1rem; }
 146โ”‚   .main-content .highlight pre {
 147โ”‚     margin-bottom: 0;
 148โ”‚     word-break: normal; }
 149โ”‚ .main-content .highlight pre, .main-content pre {
 150โ”‚   padding: 0.8rem;
 151โ”‚   overflow: auto;
 152โ”‚   font-size: 0.9rem;
 153โ”‚   line-height: 1.45;
 154โ”‚   border-radius: 0.3rem; }
 155โ”‚ .main-content pre code, .main-content pre tt {
 156โ”‚   display: inline;
 157โ”‚   max-width: initial;
 158โ”‚   padding: 0;
 159โ”‚   margin: 0;
 160โ”‚   overflow: initial;
 161โ”‚   line-height: inherit;
 162โ”‚   word-wrap: normal;
 163โ”‚   background-color: transparent;
 164โ”‚   border: 0; }
 165โ”‚   .main-content pre code:before, .main-content pre code:after, .main-content pre tt:before, .main-content pre tt:after {
 166โ”‚     content: normal; }
 167โ”‚ .main-content ul, .main-content ol {
 168โ”‚   margin-top: 0; }
 169โ”‚ .main-content blockquote {
 170โ”‚   padding: 0 1rem;
 171โ”‚   margin-left: 0;
 172โ”‚   color: #819198;
 173โ”‚   border-left: 0.3rem solid #dce6f0; }
 174โ”‚   .main-content blockquote > :first-child {
 175โ”‚     margin-top: 0; }
 176โ”‚   .main-content blockquote > :last-child {
 177โ”‚     margin-bottom: 0; }
 178โ”‚ .main-content table {
 179โ”‚   display: block;
 180โ”‚   width: 100%;
 181โ”‚   overflow: auto;
 182โ”‚   word-break: normal;
 183โ”‚   word-break: keep-all; }
 184โ”‚   .main-content table th {
 185โ”‚     font-weight: bold; }
 186โ”‚   .main-content table th, .main-content table td {
 187โ”‚     padding: 0.5rem 1rem;
 188โ”‚     border: 1px solid #e9ebec; }
 189โ”‚ .main-content dl {
 190โ”‚   padding: 0; }
 191โ”‚   .main-content dl dt {
 192โ”‚     padding: 0;
 193โ”‚     margin-top: 1rem;
 194โ”‚     font-size: 1rem;
 195โ”‚     font-weight: bold; }
 196โ”‚   .main-content dl dd {
 197โ”‚     padding: 0;
 198โ”‚     margin-bottom: 1rem; }
 199โ”‚ .main-content hr {
 200โ”‚   height: 2px;
 201โ”‚   padding: 0;
 202โ”‚   margin: 1rem 0;
 203โ”‚   background-color: #eff0f1;
 204โ”‚   border: 0; }
 205โ”‚ 
 206โ”‚ @media screen and (min-width: 64em) {
 207โ”‚   .main-content {
 208โ”‚     max-width: 64rem;
 209โ”‚     padding: 2rem 6rem;
 210โ”‚     margin: 0 auto;
 211โ”‚     font-size: 1.1rem; } }
 212โ”‚ 
 213โ”‚ @media screen and (min-width: 42em) and (max-width: 64em) {
 214โ”‚   .main-content {
 215โ”‚     padding: 2rem 4rem;
 216โ”‚     font-size: 1.1rem; } }
 217โ”‚ 
 218โ”‚ @media screen and (max-width: 42em) {
 219โ”‚   .main-content {
 220โ”‚     padding: 2rem 1rem;
 221โ”‚     font-size: 1rem; } }
 222โ”‚ 
 223โ”‚ .site-footer {
 224โ”‚   padding-top: 2rem;
 225โ”‚   margin-top: 2rem;
 226โ”‚   border-top: solid 1px #eff0f1; }
 227โ”‚ 
 228โ”‚ .site-footer-owner {
 229โ”‚   display: block;
 230โ”‚   font-weight: bold; }
 231โ”‚ 
 232โ”‚ .site-footer-credits {
 233โ”‚   color: #819198; }
 234โ”‚ 
 235โ”‚ @media screen and (min-width: 64em) {
 236โ”‚   .site-footer {
 237โ”‚     font-size: 0.8rem; } }
 238โ”‚ 
 239โ”‚ @media screen and (min-width: 42em) and (max-width: 64em) {
 240โ”‚   .site-footer {
 241โ”‚     font-size: 1rem; } }
 242โ”‚ 
 243โ”‚ @media screen and (max-width: 42em) {
 244โ”‚   .site-footer {
 245โ”‚     font-size: 0.9rem; } }
โ”€โ”€โ”€โ”€โ•ฏ

ยท ยท ยท

๐Ÿก Home

FAQs

Privacy Policy

Terms & Conditions

Official Gemlog

info@source.community

ยฉ 2022 source.community