blog.trnck.dev
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'master' of https://github.com/github/profile-generator

+2809 -8
+1
.gitignore
··· 1 + /_site
+1
Gemfile
··· 1 1 source 'https://rubygems.org' 2 2 gem 'github-pages', group: :jekyll_plugins 3 3 gem "jekyll-github-metadata" 4 + gem "jekyll-octicons"
+6
Gemfile.lock
··· 125 125 activesupport (~> 4.0) 126 126 html-pipeline (~> 2.3) 127 127 jekyll (~> 3.0) 128 + jekyll-octicons (8.3.0) 129 + jekyll (~> 3.1) 130 + octicons (= 8.3.0) 128 131 jekyll-optional-front-matter (0.3.0) 129 132 jekyll (~> 3.0) 130 133 jekyll-paginate (1.1.0) ··· 209 212 multipart-post (2.0.0) 210 213 nokogiri (1.9.1) 211 214 mini_portile2 (~> 2.4.0) 215 + octicons (8.3.0) 216 + nokogiri (>= 1.6.3.1) 212 217 octokit (4.13.0) 213 218 sawyer (~> 0.8.0, >= 0.5.3) 214 219 pathutil (0.16.2) ··· 246 251 DEPENDENCIES 247 252 github-pages 248 253 jekyll-github-metadata 254 + jekyll-octicons 249 255 250 256 BUNDLED WITH 251 257 1.16.1
+7 -3
_config.yml
··· 1 - 2 - plugins: 3 - - jekyll-github-metadata 1 + title: Brandon Rosage 2 + description: description XYZ 3 + email: brandon@github.com 4 4 5 5 sass: 6 6 sass_dir: node_modules 7 + 8 + gems: 9 + - jekyll-octicons 10 + - jekyll-github-metadata
+2
_includes/footer.html
··· 1 + </body> 2 + </html>
+8
_includes/header.html
··· 1 + <!doctype html> 2 + <html> 3 + <head> 4 + <meta charset="utf-8"> 5 + <title>{{ site.github.project_title }}</title> 6 + <link href="/assets/styles.css" rel="stylesheet" type="text/css"> 7 + </head> 8 + <body>
+36
_layouts/sidebar.html
··· 1 + {% include header.html %} 2 + 3 + {% assign user = site.github.organization_members[0] %} 4 + 5 + <div class="d-md-flex"> 6 + <div class="flex-self-stretch border-bottom border-md-bottom-0 border-md-right col-md-5 col-lg-4 col-xl-3 px-4 py-6 px-lg-6"> 7 + <img src="{{ user.avatar_url }}" class="circle mb-3" style="max-width: 150px;"> 8 + <h1 class="mb-2">{{ site.title }}</h1> 9 + <p class="mb-3 f4 text-gray"> 10 + Hi! I'm Ben. I love two things: bridges and smiling. I'm an aspiring developer who is learning how to use GitHub to build the stuff I wish existed. I'm looking to meet other developers who can help to contribute to the projects I have started. 11 + </p> 12 + <div class="f4 mb-6"> 13 + <div class="mb-3"> 14 + {% octicon mark-github height:20 class:"mr-1 v-align-middle" aria-label:GitHub %} 15 + <a href="https://github.com/{{ user.login }}"> 16 + @{{ user.login }} 17 + </a> 18 + </div> 19 + <div class="mb-3"> 20 + {% octicon mail height:20 class:"mr-1 v-align-middle" aria-label:Email %} 21 + <a href="mailto:{{ user.email }}"> 22 + {{ site.email }} 23 + </a> 24 + </div> 25 + <div class=""> 26 + {% octicon location height:20 class:"mr-1 v-align-middle" aria-label:Location %} 27 + Austin, TX 28 + </div> 29 + </div> 30 + </div> 31 + <div class="px-4 py-6 px-lg-6"> 32 + {{ content }} 33 + </div> 34 + </div> 35 + 36 + {% include footer.html %}
+36
_layouts/stacked.html
··· 1 + {% include header.html %} 2 + 3 + {% assign user = site.github.organization_members[0] %} 4 + 5 + <div class="container-lg py-6 p-responsive text-center"> 6 + <img src="{{ user.avatar_url }}" class="circle mb-3" style="max-width: 150px;"> 7 + <h1 class="mb-2">{{ site.title }}</h1> 8 + <p class="col-lg-8 mx-auto mb-3 f3 text-gray"> 9 + Hi! I'm Ben. I love two things: bridges and smiling. I'm an aspiring developer who is learning how to use GitHub to build the stuff I wish existed. I'm looking to meet other developers who can help to contribute to the projects I have started. 10 + </p> 11 + <div class="f4 mb-6"> 12 + <div class="d-md-inline-block mr-3"> 13 + {% octicon mark-github height:20 class:"mr-1 v-align-middle" aria-label:GitHub %} 14 + <a href="https://github.com/{{ user.login }}"> 15 + @{{ user.login }} 16 + </a> 17 + </div> 18 + <div class="d-md-inline-block mr-3"> 19 + {% octicon mail height:20 class:"mr-1 v-align-middle" aria-label:Email %} 20 + <a href="mailto:{{ user.email }}"> 21 + {{ site.email }} 22 + </a> 23 + </div> 24 + <div class="d-md-inline-block"> 25 + {% octicon location height:20 class:"mr-1 v-align-middle" aria-label:Location %} 26 + Austin, TX 27 + </div> 28 + </div> 29 + 30 + {{ content }} 31 + 32 + </div> 33 + 34 + 35 + 36 + {% include footer.html %}
+527
_site/assets/styles.css
··· 6 6 */ 7 7 /*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */ 8 8 /** 1. Change the default font family in all browsers (opinionated). 2. Prevent adjustments of font size after orientation changes in IE and iOS. */ 9 + @import url("https://fonts.googleapis.com/css?family=Rubik:400,500,700,900"); 9 10 html { font-family: sans-serif; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ } 10 11 11 12 /** Remove the margin in all browsers (opinionated). */ ··· 3243 3244 3244 3245 .show-on-focus { position: absolute; width: 1px; height: 1px; margin: 0; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); } 3245 3246 .show-on-focus:focus { z-index: 20; width: auto; height: auto; clip: auto; } 3247 + 3248 + /*! 3249 + * Primer-marketing 3250 + * http://primer.github.io 3251 + * 3252 + * Released under MIT license. Copyright (c) 2019 GitHub Inc. 3253 + */ 3254 + .alt-mono-font { font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace; } 3255 + 3256 + .alt-h0, .alt-h1, .alt-h2, .alt-h3, .alt-h4, .alt-h5, .alt-h6, .alt-lead { -webkit-font-smoothing: antialiased; font-family: Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", sans-serif; } 3257 + 3258 + .alt-h0 { font-size: 48px; font-weight: 300; } 3259 + @media (min-width: 768px) { .alt-h0 { font-size: 54px; } } 3260 + @media (min-width: 1012px) { .alt-h0 { font-size: 72px; } } 3261 + 3262 + .alt-h1 { font-size: 36px; font-weight: 300; } 3263 + @media (min-width: 768px) { .alt-h1 { font-size: 48px; } } 3264 + @media (min-width: 1012px) { .alt-h1 { font-size: 54px; } } 3265 + 3266 + .alt-h2 { font-size: 28px; font-weight: 300; } 3267 + @media (min-width: 768px) { .alt-h2 { font-size: 34px; } } 3268 + @media (min-width: 1012px) { .alt-h2 { font-size: 38px; } } 3269 + 3270 + .alt-h3 { font-size: 18px; font-weight: 400; } 3271 + @media (min-width: 768px) { .alt-h3 { font-size: 20px; } } 3272 + @media (min-width: 1012px) { .alt-h3 { font-size: 22px; } } 3273 + 3274 + .alt-h4 { font-size: 16px; font-weight: 500; } 3275 + 3276 + .alt-h5 { font-size: 14px; font-weight: 500; } 3277 + 3278 + .alt-h6 { font-size: 12px; font-weight: 500; } 3279 + 3280 + .alt-lead { -webkit-font-smoothing: antialiased; font-size: 21px; font-weight: 300; } 3281 + @media (min-width: 768px) { .alt-lead { font-size: 24px; } } 3282 + @media (min-width: 1012px) { .alt-lead { font-size: 26px; } } 3283 + 3284 + .alt-text-small { font-size: 14px !important; } 3285 + 3286 + .pullquote { padding-top: 0; padding-bottom: 0; padding-left: 8px; margin-bottom: 24px; font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace; font-size: 16px; line-height: 1.4; color: #586069; border-left: 3px solid #e1e4e8; } 3287 + @media (min-width: 768px) { .pullquote { padding-left: 12px; margin-bottom: 32px; margin-left: -15px; font-size: 18px; line-height: 1.5; } } 3288 + 3289 + .btn-orange { color: #fff; background-color: #d25a08; background-image: linear-gradient(-180deg, #f7802f 0%, #d25a08 90%); } 3290 + .btn-orange:focus, .btn-orange.focus { box-shadow: 0 0 0 0.2em rgba(247, 128, 47, 0.4); } 3291 + .btn-orange:hover, .btn-orange.hover { background-color: #c85607; background-image: linear-gradient(-180deg, #f77a25 0%, #c85607 90%); background-position: -0.5em; border-color: rgba(27, 31, 35, 0.5); } 3292 + .btn-orange:active, .btn-orange.selected, [open] > .btn-orange { background-color: #c75e17; background-image: none; border-color: rgba(27, 31, 35, 0.5); box-shadow: inset 0 0.15em 0.3em rgba(27, 31, 35, 0.15); } 3293 + .btn-orange:disabled, .btn-orange.disabled { color: rgba(255, 255, 255, 0.75); background-color: #e9ad84; background-image: none; border-color: rgba(27, 31, 35, 0.2); box-shadow: none; } 3294 + .btn-orange .Counter { color: #f46909; background-color: #fff; } 3295 + 3296 + .btn-outline-purple { color: #6f42c1; background-color: #fff; background-image: none; } 3297 + .btn-outline-purple .Counter { background-color: rgba(27, 31, 35, 0.07); } 3298 + .btn-outline-purple:hover, .btn-outline-purple:active, .btn-outline-purple.selected, [open] > .btn-outline-purple { color: #fff; background-color: #6f42c1; background-image: none; border-color: #6f42c1; } 3299 + .btn-outline-purple:hover .Counter, .btn-outline-purple:active .Counter, .btn-outline-purple.selected .Counter, [open] > .btn-outline-purple .Counter { color: #6f42c1; background-color: #fff; } 3300 + .btn-outline-purple:focus { border-color: #6f42c1; box-shadow: 0 0 0 0.2em rgba(111, 66, 193, 0.4); } 3301 + .btn-outline-purple:disabled, .btn-outline-purple.disabled { color: rgba(27, 31, 35, 0.3); background-color: #fff; border-color: rgba(27, 31, 35, 0.15); box-shadow: none; } 3302 + 3303 + .btn-outline-orange { color: #f66a0a; background-color: #fff; background-image: none; } 3304 + .btn-outline-orange .Counter { background-color: rgba(27, 31, 35, 0.07); } 3305 + .btn-outline-orange:hover, .btn-outline-orange:active, .btn-outline-orange.selected, [open] > .btn-outline-orange { color: #fff; background-color: #f66a0a; background-image: none; border-color: #f66a0a; } 3306 + .btn-outline-orange:hover .Counter, .btn-outline-orange:active .Counter, .btn-outline-orange.selected .Counter, [open] > .btn-outline-orange .Counter { color: #f66a0a; background-color: #fff; } 3307 + .btn-outline-orange:focus { border-color: #f66a0a; box-shadow: 0 0 0 0.2em rgba(246, 106, 10, 0.4); } 3308 + .btn-outline-orange:disabled, .btn-outline-orange.disabled { color: rgba(27, 31, 35, 0.3); background-color: #fff; border-color: rgba(27, 31, 35, 0.15); box-shadow: none; } 3309 + 3310 + .btn-outline-green { color: #28a745; background-color: #fff; background-image: none; } 3311 + .btn-outline-green .Counter { background-color: rgba(27, 31, 35, 0.07); } 3312 + .btn-outline-green:hover, .btn-outline-green:active, .btn-outline-green.selected, [open] > .btn-outline-green { color: #fff; background-color: #28a745; background-image: none; border-color: #28a745; } 3313 + .btn-outline-green:hover .Counter, .btn-outline-green:active .Counter, .btn-outline-green.selected .Counter, [open] > .btn-outline-green .Counter { color: #28a745; background-color: #fff; } 3314 + .btn-outline-green:focus { border-color: #28a745; box-shadow: 0 0 0 0.2em rgba(40, 167, 69, 0.4); } 3315 + .btn-outline-green:disabled, .btn-outline-green.disabled { color: rgba(27, 31, 35, 0.3); background-color: #fff; border-color: rgba(27, 31, 35, 0.15); box-shadow: none; } 3316 + 3317 + .btn-transparent { color: #fff; background-color: transparent; background-image: none; border: 1px solid rgba(255, 255, 255, 0.5); } 3318 + .btn-transparent:hover, .btn-transparent:active { color: #2f363d; background-color: #fff; background-image: none; border-color: #fff; } 3319 + 3320 + .jumbotron { position: relative; padding-top: 40px; padding-bottom: 40px; } 3321 + @media (min-width: 544px) { .jumbotron { padding-top: 60px; padding-bottom: 60px; } } 3322 + @media (min-width: 1280px) { .jumbotron { padding-top: 120px; padding-bottom: 120px; } } 3323 + 3324 + @media (min-width: 1012px) { .jumbotron-supertron { height: 45vw; min-height: 590px; max-height: 55vh; padding-top: 80px; padding-bottom: 80px; } } 3325 + 3326 + .jumbotron-minitron { padding-top: 24px; padding-bottom: 24px; } 3327 + @media (min-width: 544px) { .jumbotron-minitron { padding-top: 32px; padding-bottom: 32px; } } 3328 + 3329 + .jumbotron-shadow::after { position: absolute; bottom: 0; left: 0; width: 100%; height: 30px; content: " "; background-color: transparent; background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05)); background-repeat: repeat-x; box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.05); } 3330 + 3331 + .jumbotron-photo { position: relative; background-color: #24292e; background-size: cover; } 3332 + .jumbotron-photo::before { position: absolute; bottom: 0; left: 0; display: block; width: 100%; height: 100%; content: ""; background-color: rgba(0, 0, 0, 0.25); } 3333 + 3334 + .page-section { padding: 32px 0; margin-top: 0; } 3335 + @media (min-width: 768px) { .page-section { padding: 56px 0; } } 3336 + 3337 + .page-section-jumplink:target { padding-top: 112px; } 3338 + @media (min-width: 768px) { .page-section-jumplink:target { padding-top: 80px; } } 3339 + 3340 + .data-table { width: 100%; margin-top: 16px; border-collapse: collapse; border: 1px #e1e4e8 solid; box-shadow: 0 1px 1px rgba(27, 31, 35, 0.05); } 3341 + .data-table th { font-weight: 400; text-align: left; } 3342 + .data-table td, .data-table th { padding: 16px; border-right: 1px #e1e4e8 solid; border-bottom: 1px #e1e4e8 solid; } 3343 + .data-table tbody th { width: 25%; } 3344 + .data-table tbody th, .data-table tbody td { border-bottom-color: #e1e4e8; } 3345 + .data-table tbody tr:last-child th, .data-table tbody tr:last-child td { border-bottom: 1px #e1e4e8 solid; } 3346 + 3347 + .grayscale { filter: grayscale(100%); } 3348 + 3349 + /* Use with .border to turn the border rgba white 0.15 */ 3350 + .border-white-fade { border-color: rgba(255, 255, 255, 0.15) !important; } 3351 + 3352 + @media (min-width: 544px) { /* Set position to relative */ 3353 + .position-sm-relative { position: relative !important; } 3354 + /* Set position to absolute */ 3355 + .position-sm-absolute { position: absolute !important; } 3356 + /* Set position to fixed */ 3357 + .position-sm-fixed { position: fixed !important; } } 3358 + @media (min-width: 768px) { /* Set position to relative */ 3359 + .position-md-relative { position: relative !important; } 3360 + /* Set position to absolute */ 3361 + .position-md-absolute { position: absolute !important; } 3362 + /* Set position to fixed */ 3363 + .position-md-fixed { position: fixed !important; } } 3364 + @media (min-width: 1012px) { /* Set position to relative */ 3365 + .position-lg-relative { position: relative !important; } 3366 + /* Set position to absolute */ 3367 + .position-lg-absolute { position: absolute !important; } 3368 + /* Set position to fixed */ 3369 + .position-lg-fixed { position: fixed !important; } } 3370 + @media (min-width: 1280px) { /* Set position to relative */ 3371 + .position-xl-relative { position: relative !important; } 3372 + /* Set position to absolute */ 3373 + .position-xl-absolute { position: absolute !important; } 3374 + /* Set position to fixed */ 3375 + .position-xl-fixed { position: fixed !important; } } 3376 + /* Set a 48px margin on the top */ 3377 + .mt-7 { margin-top: 48px !important; } 3378 + 3379 + /* Set a 48px margin on the bottom */ 3380 + .mb-7 { margin-bottom: 48px !important; } 3381 + 3382 + /* Set a 48px margin on the top & bottom */ 3383 + .my-7 { margin-top: 48px !important; margin-bottom: 48px !important; } 3384 + 3385 + /* Set a 64px margin on the top */ 3386 + .mt-8 { margin-top: 64px !important; } 3387 + 3388 + /* Set a 64px margin on the bottom */ 3389 + .mb-8 { margin-bottom: 64px !important; } 3390 + 3391 + /* Set a 64px margin on the top & bottom */ 3392 + .my-8 { margin-top: 64px !important; margin-bottom: 64px !important; } 3393 + 3394 + /* Set a 80px margin on the top */ 3395 + .mt-9 { margin-top: 80px !important; } 3396 + 3397 + /* Set a 80px margin on the bottom */ 3398 + .mb-9 { margin-bottom: 80px !important; } 3399 + 3400 + /* Set a 80px margin on the top & bottom */ 3401 + .my-9 { margin-top: 80px !important; margin-bottom: 80px !important; } 3402 + 3403 + /* Set a 96px margin on the top */ 3404 + .mt-10 { margin-top: 96px !important; } 3405 + 3406 + /* Set a 96px margin on the bottom */ 3407 + .mb-10 { margin-bottom: 96px !important; } 3408 + 3409 + /* Set a 96px margin on the top & bottom */ 3410 + .my-10 { margin-top: 96px !important; margin-bottom: 96px !important; } 3411 + 3412 + /* Set a 112px margin on the top */ 3413 + .mt-11 { margin-top: 112px !important; } 3414 + 3415 + /* Set a 112px margin on the bottom */ 3416 + .mb-11 { margin-bottom: 112px !important; } 3417 + 3418 + /* Set a 112px margin on the top & bottom */ 3419 + .my-11 { margin-top: 112px !important; margin-bottom: 112px !important; } 3420 + 3421 + /* Set a 128px margin on the top */ 3422 + .mt-12 { margin-top: 128px !important; } 3423 + 3424 + /* Set a 128px margin on the bottom */ 3425 + .mb-12 { margin-bottom: 128px !important; } 3426 + 3427 + /* Set a 128px margin on the top & bottom */ 3428 + .my-12 { margin-top: 128px !important; margin-bottom: 128px !important; } 3429 + 3430 + @media (min-width: 544px) { /* Set a 48px margin on the top at the breakpoint sm */ 3431 + .mt-sm-7 { margin-top: 48px !important; } 3432 + /* Set a 48px margin on the bottom at the breakpoint sm */ 3433 + .mb-sm-7 { margin-bottom: 48px !important; } 3434 + /* Set a 48px margin on the top & bottom at the breakpoint sm */ 3435 + .my-sm-7 { margin-top: 48px !important; margin-bottom: 48px !important; } } 3436 + @media (min-width: 544px) { /* Set a 64px margin on the top at the breakpoint sm */ 3437 + .mt-sm-8 { margin-top: 64px !important; } 3438 + /* Set a 64px margin on the bottom at the breakpoint sm */ 3439 + .mb-sm-8 { margin-bottom: 64px !important; } 3440 + /* Set a 64px margin on the top & bottom at the breakpoint sm */ 3441 + .my-sm-8 { margin-top: 64px !important; margin-bottom: 64px !important; } } 3442 + @media (min-width: 544px) { /* Set a 80px margin on the top at the breakpoint sm */ 3443 + .mt-sm-9 { margin-top: 80px !important; } 3444 + /* Set a 80px margin on the bottom at the breakpoint sm */ 3445 + .mb-sm-9 { margin-bottom: 80px !important; } 3446 + /* Set a 80px margin on the top & bottom at the breakpoint sm */ 3447 + .my-sm-9 { margin-top: 80px !important; margin-bottom: 80px !important; } } 3448 + @media (min-width: 544px) { /* Set a 96px margin on the top at the breakpoint sm */ 3449 + .mt-sm-10 { margin-top: 96px !important; } 3450 + /* Set a 96px margin on the bottom at the breakpoint sm */ 3451 + .mb-sm-10 { margin-bottom: 96px !important; } 3452 + /* Set a 96px margin on the top & bottom at the breakpoint sm */ 3453 + .my-sm-10 { margin-top: 96px !important; margin-bottom: 96px !important; } } 3454 + @media (min-width: 544px) { /* Set a 112px margin on the top at the breakpoint sm */ 3455 + .mt-sm-11 { margin-top: 112px !important; } 3456 + /* Set a 112px margin on the bottom at the breakpoint sm */ 3457 + .mb-sm-11 { margin-bottom: 112px !important; } 3458 + /* Set a 112px margin on the top & bottom at the breakpoint sm */ 3459 + .my-sm-11 { margin-top: 112px !important; margin-bottom: 112px !important; } } 3460 + @media (min-width: 544px) { /* Set a 128px margin on the top at the breakpoint sm */ 3461 + .mt-sm-12 { margin-top: 128px !important; } 3462 + /* Set a 128px margin on the bottom at the breakpoint sm */ 3463 + .mb-sm-12 { margin-bottom: 128px !important; } 3464 + /* Set a 128px margin on the top & bottom at the breakpoint sm */ 3465 + .my-sm-12 { margin-top: 128px !important; margin-bottom: 128px !important; } } 3466 + @media (min-width: 768px) { /* Set a 48px margin on the top at the breakpoint md */ 3467 + .mt-md-7 { margin-top: 48px !important; } 3468 + /* Set a 48px margin on the bottom at the breakpoint md */ 3469 + .mb-md-7 { margin-bottom: 48px !important; } 3470 + /* Set a 48px margin on the top & bottom at the breakpoint md */ 3471 + .my-md-7 { margin-top: 48px !important; margin-bottom: 48px !important; } } 3472 + @media (min-width: 768px) { /* Set a 64px margin on the top at the breakpoint md */ 3473 + .mt-md-8 { margin-top: 64px !important; } 3474 + /* Set a 64px margin on the bottom at the breakpoint md */ 3475 + .mb-md-8 { margin-bottom: 64px !important; } 3476 + /* Set a 64px margin on the top & bottom at the breakpoint md */ 3477 + .my-md-8 { margin-top: 64px !important; margin-bottom: 64px !important; } } 3478 + @media (min-width: 768px) { /* Set a 80px margin on the top at the breakpoint md */ 3479 + .mt-md-9 { margin-top: 80px !important; } 3480 + /* Set a 80px margin on the bottom at the breakpoint md */ 3481 + .mb-md-9 { margin-bottom: 80px !important; } 3482 + /* Set a 80px margin on the top & bottom at the breakpoint md */ 3483 + .my-md-9 { margin-top: 80px !important; margin-bottom: 80px !important; } } 3484 + @media (min-width: 768px) { /* Set a 96px margin on the top at the breakpoint md */ 3485 + .mt-md-10 { margin-top: 96px !important; } 3486 + /* Set a 96px margin on the bottom at the breakpoint md */ 3487 + .mb-md-10 { margin-bottom: 96px !important; } 3488 + /* Set a 96px margin on the top & bottom at the breakpoint md */ 3489 + .my-md-10 { margin-top: 96px !important; margin-bottom: 96px !important; } } 3490 + @media (min-width: 768px) { /* Set a 112px margin on the top at the breakpoint md */ 3491 + .mt-md-11 { margin-top: 112px !important; } 3492 + /* Set a 112px margin on the bottom at the breakpoint md */ 3493 + .mb-md-11 { margin-bottom: 112px !important; } 3494 + /* Set a 112px margin on the top & bottom at the breakpoint md */ 3495 + .my-md-11 { margin-top: 112px !important; margin-bottom: 112px !important; } } 3496 + @media (min-width: 768px) { /* Set a 128px margin on the top at the breakpoint md */ 3497 + .mt-md-12 { margin-top: 128px !important; } 3498 + /* Set a 128px margin on the bottom at the breakpoint md */ 3499 + .mb-md-12 { margin-bottom: 128px !important; } 3500 + /* Set a 128px margin on the top & bottom at the breakpoint md */ 3501 + .my-md-12 { margin-top: 128px !important; margin-bottom: 128px !important; } } 3502 + @media (min-width: 1012px) { /* Set a 48px margin on the top at the breakpoint lg */ 3503 + .mt-lg-7 { margin-top: 48px !important; } 3504 + /* Set a 48px margin on the bottom at the breakpoint lg */ 3505 + .mb-lg-7 { margin-bottom: 48px !important; } 3506 + /* Set a 48px margin on the top & bottom at the breakpoint lg */ 3507 + .my-lg-7 { margin-top: 48px !important; margin-bottom: 48px !important; } } 3508 + @media (min-width: 1012px) { /* Set a 64px margin on the top at the breakpoint lg */ 3509 + .mt-lg-8 { margin-top: 64px !important; } 3510 + /* Set a 64px margin on the bottom at the breakpoint lg */ 3511 + .mb-lg-8 { margin-bottom: 64px !important; } 3512 + /* Set a 64px margin on the top & bottom at the breakpoint lg */ 3513 + .my-lg-8 { margin-top: 64px !important; margin-bottom: 64px !important; } } 3514 + @media (min-width: 1012px) { /* Set a 80px margin on the top at the breakpoint lg */ 3515 + .mt-lg-9 { margin-top: 80px !important; } 3516 + /* Set a 80px margin on the bottom at the breakpoint lg */ 3517 + .mb-lg-9 { margin-bottom: 80px !important; } 3518 + /* Set a 80px margin on the top & bottom at the breakpoint lg */ 3519 + .my-lg-9 { margin-top: 80px !important; margin-bottom: 80px !important; } } 3520 + @media (min-width: 1012px) { /* Set a 96px margin on the top at the breakpoint lg */ 3521 + .mt-lg-10 { margin-top: 96px !important; } 3522 + /* Set a 96px margin on the bottom at the breakpoint lg */ 3523 + .mb-lg-10 { margin-bottom: 96px !important; } 3524 + /* Set a 96px margin on the top & bottom at the breakpoint lg */ 3525 + .my-lg-10 { margin-top: 96px !important; margin-bottom: 96px !important; } } 3526 + @media (min-width: 1012px) { /* Set a 112px margin on the top at the breakpoint lg */ 3527 + .mt-lg-11 { margin-top: 112px !important; } 3528 + /* Set a 112px margin on the bottom at the breakpoint lg */ 3529 + .mb-lg-11 { margin-bottom: 112px !important; } 3530 + /* Set a 112px margin on the top & bottom at the breakpoint lg */ 3531 + .my-lg-11 { margin-top: 112px !important; margin-bottom: 112px !important; } } 3532 + @media (min-width: 1012px) { /* Set a 128px margin on the top at the breakpoint lg */ 3533 + .mt-lg-12 { margin-top: 128px !important; } 3534 + /* Set a 128px margin on the bottom at the breakpoint lg */ 3535 + .mb-lg-12 { margin-bottom: 128px !important; } 3536 + /* Set a 128px margin on the top & bottom at the breakpoint lg */ 3537 + .my-lg-12 { margin-top: 128px !important; margin-bottom: 128px !important; } } 3538 + @media (min-width: 1280px) { /* Set a 48px margin on the top at the breakpoint xl */ 3539 + .mt-xl-7 { margin-top: 48px !important; } 3540 + /* Set a 48px margin on the bottom at the breakpoint xl */ 3541 + .mb-xl-7 { margin-bottom: 48px !important; } 3542 + /* Set a 48px margin on the top & bottom at the breakpoint xl */ 3543 + .my-xl-7 { margin-top: 48px !important; margin-bottom: 48px !important; } } 3544 + @media (min-width: 1280px) { /* Set a 64px margin on the top at the breakpoint xl */ 3545 + .mt-xl-8 { margin-top: 64px !important; } 3546 + /* Set a 64px margin on the bottom at the breakpoint xl */ 3547 + .mb-xl-8 { margin-bottom: 64px !important; } 3548 + /* Set a 64px margin on the top & bottom at the breakpoint xl */ 3549 + .my-xl-8 { margin-top: 64px !important; margin-bottom: 64px !important; } } 3550 + @media (min-width: 1280px) { /* Set a 80px margin on the top at the breakpoint xl */ 3551 + .mt-xl-9 { margin-top: 80px !important; } 3552 + /* Set a 80px margin on the bottom at the breakpoint xl */ 3553 + .mb-xl-9 { margin-bottom: 80px !important; } 3554 + /* Set a 80px margin on the top & bottom at the breakpoint xl */ 3555 + .my-xl-9 { margin-top: 80px !important; margin-bottom: 80px !important; } } 3556 + @media (min-width: 1280px) { /* Set a 96px margin on the top at the breakpoint xl */ 3557 + .mt-xl-10 { margin-top: 96px !important; } 3558 + /* Set a 96px margin on the bottom at the breakpoint xl */ 3559 + .mb-xl-10 { margin-bottom: 96px !important; } 3560 + /* Set a 96px margin on the top & bottom at the breakpoint xl */ 3561 + .my-xl-10 { margin-top: 96px !important; margin-bottom: 96px !important; } } 3562 + @media (min-width: 1280px) { /* Set a 112px margin on the top at the breakpoint xl */ 3563 + .mt-xl-11 { margin-top: 112px !important; } 3564 + /* Set a 112px margin on the bottom at the breakpoint xl */ 3565 + .mb-xl-11 { margin-bottom: 112px !important; } 3566 + /* Set a 112px margin on the top & bottom at the breakpoint xl */ 3567 + .my-xl-11 { margin-top: 112px !important; margin-bottom: 112px !important; } } 3568 + @media (min-width: 1280px) { /* Set a 128px margin on the top at the breakpoint xl */ 3569 + .mt-xl-12 { margin-top: 128px !important; } 3570 + /* Set a 128px margin on the bottom at the breakpoint xl */ 3571 + .mb-xl-12 { margin-bottom: 128px !important; } 3572 + /* Set a 128px margin on the top & bottom at the breakpoint xl */ 3573 + .my-xl-12 { margin-top: 128px !important; margin-bottom: 128px !important; } } 3574 + /* Set a 48px padding to the top */ 3575 + .pt-7 { padding-top: 48px !important; } 3576 + 3577 + /* Set a 48px padding to the bottom */ 3578 + .pb-7 { padding-bottom: 48px !important; } 3579 + 3580 + /* Set a 48px padding to the top & bottom */ 3581 + .py-7 { padding-top: 48px !important; padding-bottom: 48px !important; } 3582 + 3583 + /* Set a 64px padding to the top */ 3584 + .pt-8 { padding-top: 64px !important; } 3585 + 3586 + /* Set a 64px padding to the bottom */ 3587 + .pb-8 { padding-bottom: 64px !important; } 3588 + 3589 + /* Set a 64px padding to the top & bottom */ 3590 + .py-8 { padding-top: 64px !important; padding-bottom: 64px !important; } 3591 + 3592 + /* Set a 80px padding to the top */ 3593 + .pt-9 { padding-top: 80px !important; } 3594 + 3595 + /* Set a 80px padding to the bottom */ 3596 + .pb-9 { padding-bottom: 80px !important; } 3597 + 3598 + /* Set a 80px padding to the top & bottom */ 3599 + .py-9 { padding-top: 80px !important; padding-bottom: 80px !important; } 3600 + 3601 + /* Set a 96px padding to the top */ 3602 + .pt-10 { padding-top: 96px !important; } 3603 + 3604 + /* Set a 96px padding to the bottom */ 3605 + .pb-10 { padding-bottom: 96px !important; } 3606 + 3607 + /* Set a 96px padding to the top & bottom */ 3608 + .py-10 { padding-top: 96px !important; padding-bottom: 96px !important; } 3609 + 3610 + /* Set a 112px padding to the top */ 3611 + .pt-11 { padding-top: 112px !important; } 3612 + 3613 + /* Set a 112px padding to the bottom */ 3614 + .pb-11 { padding-bottom: 112px !important; } 3615 + 3616 + /* Set a 112px padding to the top & bottom */ 3617 + .py-11 { padding-top: 112px !important; padding-bottom: 112px !important; } 3618 + 3619 + /* Set a 128px padding to the top */ 3620 + .pt-12 { padding-top: 128px !important; } 3621 + 3622 + /* Set a 128px padding to the bottom */ 3623 + .pb-12 { padding-bottom: 128px !important; } 3624 + 3625 + /* Set a 128px padding to the top & bottom */ 3626 + .py-12 { padding-top: 128px !important; padding-bottom: 128px !important; } 3627 + 3628 + @media (min-width: 544px) { /* Set a 48px padding to the top at the sm breakpoint */ 3629 + .pt-sm-7 { padding-top: 48px !important; } 3630 + /* Set a 48px padding to the bottom at the sm breakpoint */ 3631 + .pb-sm-7 { padding-bottom: 48px !important; } 3632 + /* Set a 48px padding to the top & bottom at the sm breakpoint */ 3633 + .py-sm-7 { padding-top: 48px !important; padding-bottom: 48px !important; } } 3634 + @media (min-width: 544px) { /* Set a 64px padding to the top at the sm breakpoint */ 3635 + .pt-sm-8 { padding-top: 64px !important; } 3636 + /* Set a 64px padding to the bottom at the sm breakpoint */ 3637 + .pb-sm-8 { padding-bottom: 64px !important; } 3638 + /* Set a 64px padding to the top & bottom at the sm breakpoint */ 3639 + .py-sm-8 { padding-top: 64px !important; padding-bottom: 64px !important; } } 3640 + @media (min-width: 544px) { /* Set a 80px padding to the top at the sm breakpoint */ 3641 + .pt-sm-9 { padding-top: 80px !important; } 3642 + /* Set a 80px padding to the bottom at the sm breakpoint */ 3643 + .pb-sm-9 { padding-bottom: 80px !important; } 3644 + /* Set a 80px padding to the top & bottom at the sm breakpoint */ 3645 + .py-sm-9 { padding-top: 80px !important; padding-bottom: 80px !important; } } 3646 + @media (min-width: 544px) { /* Set a 96px padding to the top at the sm breakpoint */ 3647 + .pt-sm-10 { padding-top: 96px !important; } 3648 + /* Set a 96px padding to the bottom at the sm breakpoint */ 3649 + .pb-sm-10 { padding-bottom: 96px !important; } 3650 + /* Set a 96px padding to the top & bottom at the sm breakpoint */ 3651 + .py-sm-10 { padding-top: 96px !important; padding-bottom: 96px !important; } } 3652 + @media (min-width: 544px) { /* Set a 112px padding to the top at the sm breakpoint */ 3653 + .pt-sm-11 { padding-top: 112px !important; } 3654 + /* Set a 112px padding to the bottom at the sm breakpoint */ 3655 + .pb-sm-11 { padding-bottom: 112px !important; } 3656 + /* Set a 112px padding to the top & bottom at the sm breakpoint */ 3657 + .py-sm-11 { padding-top: 112px !important; padding-bottom: 112px !important; } } 3658 + @media (min-width: 544px) { /* Set a 128px padding to the top at the sm breakpoint */ 3659 + .pt-sm-12 { padding-top: 128px !important; } 3660 + /* Set a 128px padding to the bottom at the sm breakpoint */ 3661 + .pb-sm-12 { padding-bottom: 128px !important; } 3662 + /* Set a 128px padding to the top & bottom at the sm breakpoint */ 3663 + .py-sm-12 { padding-top: 128px !important; padding-bottom: 128px !important; } } 3664 + @media (min-width: 768px) { /* Set a 48px padding to the top at the md breakpoint */ 3665 + .pt-md-7 { padding-top: 48px !important; } 3666 + /* Set a 48px padding to the bottom at the md breakpoint */ 3667 + .pb-md-7 { padding-bottom: 48px !important; } 3668 + /* Set a 48px padding to the top & bottom at the md breakpoint */ 3669 + .py-md-7 { padding-top: 48px !important; padding-bottom: 48px !important; } } 3670 + @media (min-width: 768px) { /* Set a 64px padding to the top at the md breakpoint */ 3671 + .pt-md-8 { padding-top: 64px !important; } 3672 + /* Set a 64px padding to the bottom at the md breakpoint */ 3673 + .pb-md-8 { padding-bottom: 64px !important; } 3674 + /* Set a 64px padding to the top & bottom at the md breakpoint */ 3675 + .py-md-8 { padding-top: 64px !important; padding-bottom: 64px !important; } } 3676 + @media (min-width: 768px) { /* Set a 80px padding to the top at the md breakpoint */ 3677 + .pt-md-9 { padding-top: 80px !important; } 3678 + /* Set a 80px padding to the bottom at the md breakpoint */ 3679 + .pb-md-9 { padding-bottom: 80px !important; } 3680 + /* Set a 80px padding to the top & bottom at the md breakpoint */ 3681 + .py-md-9 { padding-top: 80px !important; padding-bottom: 80px !important; } } 3682 + @media (min-width: 768px) { /* Set a 96px padding to the top at the md breakpoint */ 3683 + .pt-md-10 { padding-top: 96px !important; } 3684 + /* Set a 96px padding to the bottom at the md breakpoint */ 3685 + .pb-md-10 { padding-bottom: 96px !important; } 3686 + /* Set a 96px padding to the top & bottom at the md breakpoint */ 3687 + .py-md-10 { padding-top: 96px !important; padding-bottom: 96px !important; } } 3688 + @media (min-width: 768px) { /* Set a 112px padding to the top at the md breakpoint */ 3689 + .pt-md-11 { padding-top: 112px !important; } 3690 + /* Set a 112px padding to the bottom at the md breakpoint */ 3691 + .pb-md-11 { padding-bottom: 112px !important; } 3692 + /* Set a 112px padding to the top & bottom at the md breakpoint */ 3693 + .py-md-11 { padding-top: 112px !important; padding-bottom: 112px !important; } } 3694 + @media (min-width: 768px) { /* Set a 128px padding to the top at the md breakpoint */ 3695 + .pt-md-12 { padding-top: 128px !important; } 3696 + /* Set a 128px padding to the bottom at the md breakpoint */ 3697 + .pb-md-12 { padding-bottom: 128px !important; } 3698 + /* Set a 128px padding to the top & bottom at the md breakpoint */ 3699 + .py-md-12 { padding-top: 128px !important; padding-bottom: 128px !important; } } 3700 + @media (min-width: 1012px) { /* Set a 48px padding to the top at the lg breakpoint */ 3701 + .pt-lg-7 { padding-top: 48px !important; } 3702 + /* Set a 48px padding to the bottom at the lg breakpoint */ 3703 + .pb-lg-7 { padding-bottom: 48px !important; } 3704 + /* Set a 48px padding to the top & bottom at the lg breakpoint */ 3705 + .py-lg-7 { padding-top: 48px !important; padding-bottom: 48px !important; } } 3706 + @media (min-width: 1012px) { /* Set a 64px padding to the top at the lg breakpoint */ 3707 + .pt-lg-8 { padding-top: 64px !important; } 3708 + /* Set a 64px padding to the bottom at the lg breakpoint */ 3709 + .pb-lg-8 { padding-bottom: 64px !important; } 3710 + /* Set a 64px padding to the top & bottom at the lg breakpoint */ 3711 + .py-lg-8 { padding-top: 64px !important; padding-bottom: 64px !important; } } 3712 + @media (min-width: 1012px) { /* Set a 80px padding to the top at the lg breakpoint */ 3713 + .pt-lg-9 { padding-top: 80px !important; } 3714 + /* Set a 80px padding to the bottom at the lg breakpoint */ 3715 + .pb-lg-9 { padding-bottom: 80px !important; } 3716 + /* Set a 80px padding to the top & bottom at the lg breakpoint */ 3717 + .py-lg-9 { padding-top: 80px !important; padding-bottom: 80px !important; } } 3718 + @media (min-width: 1012px) { /* Set a 96px padding to the top at the lg breakpoint */ 3719 + .pt-lg-10 { padding-top: 96px !important; } 3720 + /* Set a 96px padding to the bottom at the lg breakpoint */ 3721 + .pb-lg-10 { padding-bottom: 96px !important; } 3722 + /* Set a 96px padding to the top & bottom at the lg breakpoint */ 3723 + .py-lg-10 { padding-top: 96px !important; padding-bottom: 96px !important; } } 3724 + @media (min-width: 1012px) { /* Set a 112px padding to the top at the lg breakpoint */ 3725 + .pt-lg-11 { padding-top: 112px !important; } 3726 + /* Set a 112px padding to the bottom at the lg breakpoint */ 3727 + .pb-lg-11 { padding-bottom: 112px !important; } 3728 + /* Set a 112px padding to the top & bottom at the lg breakpoint */ 3729 + .py-lg-11 { padding-top: 112px !important; padding-bottom: 112px !important; } } 3730 + @media (min-width: 1012px) { /* Set a 128px padding to the top at the lg breakpoint */ 3731 + .pt-lg-12 { padding-top: 128px !important; } 3732 + /* Set a 128px padding to the bottom at the lg breakpoint */ 3733 + .pb-lg-12 { padding-bottom: 128px !important; } 3734 + /* Set a 128px padding to the top & bottom at the lg breakpoint */ 3735 + .py-lg-12 { padding-top: 128px !important; padding-bottom: 128px !important; } } 3736 + @media (min-width: 1280px) { /* Set a 48px padding to the top at the xl breakpoint */ 3737 + .pt-xl-7 { padding-top: 48px !important; } 3738 + /* Set a 48px padding to the bottom at the xl breakpoint */ 3739 + .pb-xl-7 { padding-bottom: 48px !important; } 3740 + /* Set a 48px padding to the top & bottom at the xl breakpoint */ 3741 + .py-xl-7 { padding-top: 48px !important; padding-bottom: 48px !important; } } 3742 + @media (min-width: 1280px) { /* Set a 64px padding to the top at the xl breakpoint */ 3743 + .pt-xl-8 { padding-top: 64px !important; } 3744 + /* Set a 64px padding to the bottom at the xl breakpoint */ 3745 + .pb-xl-8 { padding-bottom: 64px !important; } 3746 + /* Set a 64px padding to the top & bottom at the xl breakpoint */ 3747 + .py-xl-8 { padding-top: 64px !important; padding-bottom: 64px !important; } } 3748 + @media (min-width: 1280px) { /* Set a 80px padding to the top at the xl breakpoint */ 3749 + .pt-xl-9 { padding-top: 80px !important; } 3750 + /* Set a 80px padding to the bottom at the xl breakpoint */ 3751 + .pb-xl-9 { padding-bottom: 80px !important; } 3752 + /* Set a 80px padding to the top & bottom at the xl breakpoint */ 3753 + .py-xl-9 { padding-top: 80px !important; padding-bottom: 80px !important; } } 3754 + @media (min-width: 1280px) { /* Set a 96px padding to the top at the xl breakpoint */ 3755 + .pt-xl-10 { padding-top: 96px !important; } 3756 + /* Set a 96px padding to the bottom at the xl breakpoint */ 3757 + .pb-xl-10 { padding-bottom: 96px !important; } 3758 + /* Set a 96px padding to the top & bottom at the xl breakpoint */ 3759 + .py-xl-10 { padding-top: 96px !important; padding-bottom: 96px !important; } } 3760 + @media (min-width: 1280px) { /* Set a 112px padding to the top at the xl breakpoint */ 3761 + .pt-xl-11 { padding-top: 112px !important; } 3762 + /* Set a 112px padding to the bottom at the xl breakpoint */ 3763 + .pb-xl-11 { padding-bottom: 112px !important; } 3764 + /* Set a 112px padding to the top & bottom at the xl breakpoint */ 3765 + .py-xl-11 { padding-top: 112px !important; padding-bottom: 112px !important; } } 3766 + @media (min-width: 1280px) { /* Set a 128px padding to the top at the xl breakpoint */ 3767 + .pt-xl-12 { padding-top: 128px !important; } 3768 + /* Set a 128px padding to the bottom at the xl breakpoint */ 3769 + .pb-xl-12 { padding-bottom: 128px !important; } 3770 + /* Set a 128px padding to the top & bottom at the xl breakpoint */ 3771 + .py-xl-12 { padding-top: 128px !important; padding-bottom: 128px !important; } } 3772 + body { font-family: 'Rubik', sans-serif; }
+3 -3
_site/index.html
··· 2 2 <html> 3 3 <head> 4 4 <meta charset="utf-8"> 5 - <title>profile-generator</title> 5 + <title>Brandon Rosage</title> 6 6 <link href="/assets/styles.css" rel="stylesheet" type="text/css"> 7 7 </head> 8 8 <body> 9 9 <div class="container-lg p-responsive"> 10 - <h1>profile-generator</h1> 11 - <p></p> 10 + <h1>Brandon Rosage</h1> 11 + <p>description XYZ</p> 12 12 <p class="text-bold"></p> 13 13 <img src=""> 14 14 </div>
+47
_site/layout-sidebar.html
··· 1 + <!doctype html> 2 + <html> 3 + <head> 4 + <meta charset="utf-8"> 5 + <title>profile-generator</title> 6 + <link href="/assets/styles.css" rel="stylesheet" type="text/css"> 7 + </head> 8 + <body> 9 + 10 + 11 + 12 + 13 + <div class="d-md-flex"> 14 + <div class="flex-self-stretch border-bottom border-md-bottom-0 border-md-right col-md-5 col-lg-4 col-xl-3 px-4 py-6 px-lg-6"> 15 + <img src="https://avatars0.githubusercontent.com/u/11095731?v=4" class="circle mb-3" style="max-width: 150px;"> 16 + <h1 class="mb-2">Brandon Rosage</h1> 17 + <p class="mb-3 f4 text-gray"> 18 + Hi! I'm Ben. I love two things: bridges and smiling. I'm an aspiring developer who is learning how to use GitHub to build the stuff I wish existed. I'm looking to meet other developers who can help to contribute to the projects I have started. 19 + </p> 20 + <div class="f4 mb-6"> 21 + <div class="mb-3"> 22 + <svg height="20" class="octicon octicon-mark-github mr-1 v-align-middle" aria-label="GitHub" viewBox="0 0 16 16" version="1.1" width="20" role="img"><path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8z"/></svg> 23 + <a href="https://github.com/BenEmdon"> 24 + @BenEmdon 25 + </a> 26 + </div> 27 + <div class="mb-3"> 28 + <svg height="20" class="octicon octicon-mail mr-1 v-align-middle" aria-label="Email" viewBox="0 0 14 16" version="1.1" width="17" role="img"><path fill-rule="evenodd" d="M0 4v8c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1zm13 0L7 9 1 4h12zM1 5.5l4 3-4 3v-6zM2 12l3.5-3L7 10.5 8.5 9l3.5 3H2zm11-.5l-4-3 4-3v6z"/></svg> 29 + <a href="mailto:"> 30 + brandon@github.com 31 + </a> 32 + </div> 33 + <div class=""> 34 + <svg height="20" class="octicon octicon-location mr-1 v-align-middle" aria-label="Location" viewBox="0 0 12 16" version="1.1" width="15" role="img"><path fill-rule="evenodd" d="M6 0C2.69 0 0 2.5 0 5.5 0 10.02 6 16 6 16s6-5.98 6-10.5C12 2.5 9.31 0 6 0zm0 14.55C4.14 12.52 1 8.44 1 5.5 1 3.02 3.25 1 6 1c1.34 0 2.61.48 3.56 1.36.92.86 1.44 1.97 1.44 3.14 0 2.94-3.14 7.02-5 9.05zM8 5.5c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z"/></svg> 35 + Austin, TX 36 + </div> 37 + </div> 38 + </div> 39 + <div class="px-4 py-6 px-lg-6"> 40 + Hello! This is where the content for the sidebar layout will be. 41 + 42 + </div> 43 + </div> 44 + 45 + </body> 46 + </html> 47 +
+47
_site/layout-stacked.html
··· 1 + <!doctype html> 2 + <html> 3 + <head> 4 + <meta charset="utf-8"> 5 + <title>profile-generator</title> 6 + <link href="/assets/styles.css" rel="stylesheet" type="text/css"> 7 + </head> 8 + <body> 9 + 10 + 11 + 12 + 13 + <div class="container-lg py-6 p-responsive text-center"> 14 + <img src="https://avatars0.githubusercontent.com/u/11095731?v=4" class="circle mb-3" style="max-width: 150px;"> 15 + <h1 class="mb-2">Brandon Rosage</h1> 16 + <p class="col-lg-8 mx-auto mb-3 f3 text-gray"> 17 + Hi! I'm Ben. I love two things: bridges and smiling. I'm an aspiring developer who is learning how to use GitHub to build the stuff I wish existed. I'm looking to meet other developers who can help to contribute to the projects I have started. 18 + </p> 19 + <div class="f4 mb-6"> 20 + <div class="d-md-inline-block mr-3"> 21 + <svg height="20" class="octicon octicon-mark-github mr-1 v-align-middle" aria-label="GitHub" viewBox="0 0 16 16" version="1.1" width="20" role="img"><path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8z"/></svg> 22 + <a href="https://github.com/BenEmdon"> 23 + @BenEmdon 24 + </a> 25 + </div> 26 + <div class="d-md-inline-block mr-3"> 27 + <svg height="20" class="octicon octicon-mail mr-1 v-align-middle" aria-label="Email" viewBox="0 0 14 16" version="1.1" width="17" role="img"><path fill-rule="evenodd" d="M0 4v8c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1zm13 0L7 9 1 4h12zM1 5.5l4 3-4 3v-6zM2 12l3.5-3L7 10.5 8.5 9l3.5 3H2zm11-.5l-4-3 4-3v6z"/></svg> 28 + <a href="mailto:"> 29 + brandon@github.com 30 + </a> 31 + </div> 32 + <div class="d-md-inline-block"> 33 + <svg height="20" class="octicon octicon-location mr-1 v-align-middle" aria-label="Location" viewBox="0 0 12 16" version="1.1" width="15" role="img"><path fill-rule="evenodd" d="M6 0C2.69 0 0 2.5 0 5.5 0 10.02 6 16 6 16s6-5.98 6-10.5C12 2.5 9.31 0 6 0zm0 14.55C4.14 12.52 1 8.44 1 5.5 1 3.02 3.25 1 6 1c1.34 0 2.61.48 3.56 1.36.92.86 1.44 1.97 1.44 3.14 0 2.94-3.14 7.02-5 9.05zM8 5.5c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z"/></svg> 34 + Austin, TX 35 + </div> 36 + </div> 37 + 38 + Hello! This is where the content will be. 39 + 40 + 41 + </div> 42 + 43 + 44 + 45 + </body> 46 + </html> 47 +
+73
_site/package-lock.json
··· 149 149 "primer-support": "4.7.2" 150 150 } 151 151 }, 152 + "primer-marketing": { 153 + "version": "6.3.3", 154 + "resolved": "https://registry.npmjs.org/primer-marketing/-/primer-marketing-6.3.3.tgz", 155 + "integrity": "sha512-vmR/YkOlFnQVQSxluXe5lbkH+B7Z2tirgCDGVp+SD9Zs+FJ6YRELmw6cjm0okVkH9205qcMvy9INOunkhKrktw==", 156 + "requires": { 157 + "primer-marketing-buttons": "1.0.13", 158 + "primer-marketing-support": "1.5.6", 159 + "primer-marketing-type": "1.4.13", 160 + "primer-marketing-utilities": "1.7.3", 161 + "primer-page-headers": "1.5.3", 162 + "primer-page-sections": "1.5.3", 163 + "primer-support": "4.7.2", 164 + "primer-tables": "1.5.3" 165 + } 166 + }, 167 + "primer-marketing-buttons": { 168 + "version": "1.0.13", 169 + "resolved": "https://registry.npmjs.org/primer-marketing-buttons/-/primer-marketing-buttons-1.0.13.tgz", 170 + "integrity": "sha512-1MzzrG/68zaEcQypG50uELwQ4MHH9b8aTy3jXxayZRc1qvZaLh5SEcSIHWe5lMIZk8qrtYhr22py9+kibyTKIQ==", 171 + "requires": { 172 + "primer-support": "4.7.2" 173 + } 174 + }, 175 + "primer-marketing-support": { 176 + "version": "1.5.6", 177 + "resolved": "https://registry.npmjs.org/primer-marketing-support/-/primer-marketing-support-1.5.6.tgz", 178 + "integrity": "sha512-YU8ein52s/W+s4a4hHZZJbHURfz2FLI5ItrUxqaqJjcT0O2bALP/JbuCZDrbvWxuOSK4kbF22ANmmMGWFIzp/Q==" 179 + }, 180 + "primer-marketing-type": { 181 + "version": "1.4.13", 182 + "resolved": "https://registry.npmjs.org/primer-marketing-type/-/primer-marketing-type-1.4.13.tgz", 183 + "integrity": "sha512-ke6l3zgc4mF5ArDzZB1TJ5VHbZG2/uwekVROLQOK4v7XI0MkYZWA9tI+k8UhaFLSsw0vGqxM2ibKUzsQH61C8g==", 184 + "requires": { 185 + "primer-marketing-support": "1.5.6", 186 + "primer-support": "4.7.2" 187 + } 188 + }, 189 + "primer-marketing-utilities": { 190 + "version": "1.7.3", 191 + "resolved": "https://registry.npmjs.org/primer-marketing-utilities/-/primer-marketing-utilities-1.7.3.tgz", 192 + "integrity": "sha512-YYDPgyC0G65tPHwZ6ktxfEAqUkJlU2sZjzdcH7thlcg83/UqiZfgmgiiBAxdMjrACY7Q2X9HaHicr5F4rmPhPw==", 193 + "requires": { 194 + "primer-marketing-support": "1.5.6", 195 + "primer-support": "4.7.2" 196 + } 197 + }, 152 198 "primer-navigation": { 153 199 "version": "1.5.11", 154 200 "resolved": "https://registry.npmjs.org/primer-navigation/-/primer-navigation-1.5.11.tgz", ··· 157 203 "primer-support": "4.7.2" 158 204 } 159 205 }, 206 + "primer-page-headers": { 207 + "version": "1.5.3", 208 + "resolved": "https://registry.npmjs.org/primer-page-headers/-/primer-page-headers-1.5.3.tgz", 209 + "integrity": "sha512-SVgAnr1jz/8qNhr+LsQayHGGICi1pCfBJV2R+zhcooDJC29ddSoTW+LpwvBj1P68c7sJfaMPRmlcq0hUGGG/Pw==", 210 + "requires": { 211 + "primer-marketing-support": "1.5.6", 212 + "primer-support": "4.7.2" 213 + } 214 + }, 215 + "primer-page-sections": { 216 + "version": "1.5.3", 217 + "resolved": "https://registry.npmjs.org/primer-page-sections/-/primer-page-sections-1.5.3.tgz", 218 + "integrity": "sha512-xaj6v+v3FvaSMVFDZAYsrObkvOviPwxYZt0rrkMeoyhrMVG2uB3nD3Kmu3st9UbwobdXjMTSKPkKBcarckwhuw==", 219 + "requires": { 220 + "primer-marketing-support": "1.5.6", 221 + "primer-support": "4.7.2" 222 + } 223 + }, 160 224 "primer-pagination": { 161 225 "version": "1.0.7", 162 226 "resolved": "https://registry.npmjs.org/primer-pagination/-/primer-pagination-1.0.7.tgz", ··· 175 239 "resolved": "https://registry.npmjs.org/primer-table-object/-/primer-table-object-1.4.13.tgz", 176 240 "integrity": "sha512-JoU/T1aubSg3cvEXh5K95X63W5bJLFlvDflVWMc8QJKiHBPmICH7yccsGI+ybhEUnd7MUD+BEXKgQwM+Iinv5g==", 177 241 "requires": { 242 + "primer-support": "4.7.2" 243 + } 244 + }, 245 + "primer-tables": { 246 + "version": "1.5.3", 247 + "resolved": "https://registry.npmjs.org/primer-tables/-/primer-tables-1.5.3.tgz", 248 + "integrity": "sha512-ZTBG2qQvE9qKI8N7sdN39F8y5sckDRSFR4JkTVQqujrXwoK7kGeqdNXirKFSuzSyW9MnBt02tOTQ65xC0xl3sg==", 249 + "requires": { 250 + "primer-marketing-support": "1.5.6", 178 251 "primer-support": "4.7.2" 179 252 } 180 253 },
+2 -1
_site/package.json
··· 18 18 "homepage": "https://github.com/github/profile-generator#readme", 19 19 "dependencies": { 20 20 "github-calendar": "^1.3.1", 21 - "primer-core": "^6.10.9" 21 + "primer-core": "^6.10.9", 22 + "primer-marketing": "^6.3.3" 22 23 } 23 24 }
+6
assets/styles.scss
··· 1 1 --- 2 2 --- 3 3 @import "primer-core/index"; 4 + @import "primer-marketing/index"; 5 + @import url('https://fonts.googleapis.com/css?family=Rubik:400,500,700,900'); 6 + 7 + body { 8 + font-family: 'Rubik', sans-serif; 9 + }
+5
layout-sidebar.html
··· 1 + --- 2 + layout: sidebar 3 + --- 4 + 5 + Hello! This is where the content for the sidebar layout will be.
+5
layout-stacked.html
··· 1 + --- 2 + layout: stacked 3 + --- 4 + 5 + Hello! This is where the content will be.
+21
node_modules/primer-marketing-buttons/LICENSE
··· 1 + The MIT License (MIT) 2 + 3 + Copyright (c) 2019 GitHub Inc. 4 + 5 + Permission is hereby granted, free of charge, to any person obtaining a copy 6 + of this software and associated documentation files (the "Software"), to deal 7 + in the Software without restriction, including without limitation the rights 8 + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 + copies of the Software, and to permit persons to whom the Software is 10 + furnished to do so, subject to the following conditions: 11 + 12 + The above copyright notice and this permission notice shall be included in all 13 + copies or substantial portions of the Software. 14 + 15 + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 + SOFTWARE.
+90
node_modules/primer-marketing-buttons/README.md
··· 1 + # Primer Marketing CSS Buttons 2 + 3 + [![npm version](https://img.shields.io/npm/v/primer-marketing-buttons.svg)](https://www.npmjs.org/package/primer-marketing-buttons) 4 + [![Build Status](https://travis-ci.org/primer/primer.svg?branch=master)](https://travis-ci.org/primer/primer) 5 + 6 + > Buttons are used for actions, like in forms, while textual hyperlinks are used for destinations, or moving from one page to another. 7 + 8 + This repository is a module of the full [primer][primer] repository. 9 + 10 + ## Documentation 11 + 12 + <!-- %docs 13 + title: Marketing Buttons 14 + path: components/marketing-buttons 15 + status: New Release 16 + --> 17 + 18 + Marketing buttons extend primer-core buttons with more color and fill styles. 19 + 20 + 21 + ## Colors 22 + 23 + Marketing buttons are available in orange. 24 + 25 + ```html 26 + <button class="btn btn-orange" type="button">Button button</button> 27 + ``` 28 + 29 + ## Outline button colors 30 + 31 + The `btn-outline` has also been extended with orange, purple, and green. 32 + 33 + ```html 34 + <button class="btn btn-outline-orange" type="button">Button button</button> 35 + <a class="btn btn-outline-purple" href="#url" role="button">Link button</a> 36 + <button class="btn btn-outline-green" type="button">Button button</button> 37 + ``` 38 + 39 + ## Transparent button 40 + 41 + A button can also be transparent and displayed with a white border with `btn-transparent`. 42 + 43 + ```html 44 + <div class="bg-gray-dark p-4 mt-4"> 45 + <button class="btn btn-transparent" type="button"> 46 + Button button 47 + <span class="Counter">12</span> 48 + </button> 49 + </div> 50 + ``` 51 + 52 + <!-- %enddocs --> 53 + 54 + ## Install 55 + 56 + This repository is distributed with [npm][npm]. After [installing npm][install-npm], you can install `primer-marketing-buttons` with this command. 57 + 58 + ``` 59 + $ npm install --save primer-marketing-buttons 60 + ``` 61 + 62 + ## Usage 63 + 64 + The source files included are written in [Sass][sass] (`scss`) You can simply point your sass `include-path` at your `node_modules` directory and import it like this. 65 + 66 + ```scss 67 + @import "primer-marketing-buttons/index.scss"; 68 + ``` 69 + 70 + You can also import specific portions of the module by importing those partials from the `/lib/` folder. _Make sure you import any requirements along with the modules._ 71 + 72 + ## Build 73 + 74 + For a compiled **css** version of this module, a npm script is included that will output a css version to `build/build.css` 75 + 76 + ``` 77 + $ npm run build 78 + ``` 79 + 80 + ## License 81 + 82 + MIT &copy; [GitHub](https://github.com/) 83 + 84 + [primer]: https://github.com/primer/primer 85 + [primer-support]: https://github.com/primer/primer-support 86 + [support]: https://github.com/primer/primer-support 87 + [docs]: http://primer.github.io/ 88 + [npm]: https://www.npmjs.com/ 89 + [install-npm]: https://docs.npmjs.com/getting-started/installing-node 90 + [sass]: http://sass-lang.com/
+1
node_modules/primer-marketing-buttons/build/build.css
··· 1 + .btn-orange{color:#fff;background-color:#d25a08;background-image:linear-gradient(-180deg, #f7802f 0%, #d25a08 90%)}.btn-orange:focus,.btn-orange.focus{box-shadow:0 0 0 0.2em rgba(247,128,47,0.4)}.btn-orange:hover,.btn-orange.hover{background-color:#c85607;background-image:linear-gradient(-180deg, #f77a25 0%, #c85607 90%);background-position:-.5em;border-color:rgba(27,31,35,0.5)}.btn-orange:active,.btn-orange.selected,[open]>.btn-orange{background-color:#c65e17;background-image:none;border-color:rgba(27,31,35,0.5);box-shadow:inset 0 0.15em 0.3em rgba(27,31,35,0.15)}.btn-orange:disabled,.btn-orange.disabled{color:rgba(255,255,255,0.75);background-color:#e9ad83;background-image:none;border-color:rgba(27,31,35,0.2);box-shadow:none}.btn-orange .Counter{color:#f46909;background-color:#fff}.btn-outline-purple{color:#6f42c1;background-color:#fff;background-image:none}.btn-outline-purple .Counter{background-color:rgba(27,31,35,0.07)}.btn-outline-purple:hover,.btn-outline-purple:active,.btn-outline-purple.selected,[open]>.btn-outline-purple{color:#fff;background-color:#6f42c1;background-image:none;border-color:#6f42c1}.btn-outline-purple:hover .Counter,.btn-outline-purple:active .Counter,.btn-outline-purple.selected .Counter,[open]>.btn-outline-purple .Counter{color:#6f42c1;background-color:#fff}.btn-outline-purple:focus{border-color:#6f42c1;box-shadow:0 0 0 0.2em rgba(111,66,193,0.4)}.btn-outline-purple:disabled,.btn-outline-purple.disabled{color:rgba(27,31,35,0.3);background-color:#fff;border-color:rgba(27,31,35,0.15);box-shadow:none}.btn-outline-orange{color:#f66a0a;background-color:#fff;background-image:none}.btn-outline-orange .Counter{background-color:rgba(27,31,35,0.07)}.btn-outline-orange:hover,.btn-outline-orange:active,.btn-outline-orange.selected,[open]>.btn-outline-orange{color:#fff;background-color:#f66a0a;background-image:none;border-color:#f66a0a}.btn-outline-orange:hover .Counter,.btn-outline-orange:active .Counter,.btn-outline-orange.selected .Counter,[open]>.btn-outline-orange .Counter{color:#f66a0a;background-color:#fff}.btn-outline-orange:focus{border-color:#f66a0a;box-shadow:0 0 0 0.2em rgba(246,106,10,0.4)}.btn-outline-orange:disabled,.btn-outline-orange.disabled{color:rgba(27,31,35,0.3);background-color:#fff;border-color:rgba(27,31,35,0.15);box-shadow:none}.btn-outline-green{color:#28a745;background-color:#fff;background-image:none}.btn-outline-green .Counter{background-color:rgba(27,31,35,0.07)}.btn-outline-green:hover,.btn-outline-green:active,.btn-outline-green.selected,[open]>.btn-outline-green{color:#fff;background-color:#28a745;background-image:none;border-color:#28a745}.btn-outline-green:hover .Counter,.btn-outline-green:active .Counter,.btn-outline-green.selected .Counter,[open]>.btn-outline-green .Counter{color:#28a745;background-color:#fff}.btn-outline-green:focus{border-color:#28a745;box-shadow:0 0 0 0.2em rgba(40,167,69,0.4)}.btn-outline-green:disabled,.btn-outline-green.disabled{color:rgba(27,31,35,0.3);background-color:#fff;border-color:rgba(27,31,35,0.15);box-shadow:none}.btn-transparent{color:#fff;background-color:transparent;background-image:none;border:1px solid rgba(255,255,255,0.5)}.btn-transparent:hover,.btn-transparent:active{color:#2f363d;background-color:#fff;background-image:none;border-color:#fff}
+1
node_modules/primer-marketing-buttons/build/data.json
··· 1 + {"cssstats":{"size":3296,"gzipSize":664,"humanizedSize":"3kB","humanizedGzipSize":"664B","rules":{"total":26,"size":{"graph":[3,1,4,4,5,2,3,1,4,2,2,4,3,1,4,2,2,4,3,1,4,2,2,4,4,4],"max":5,"average":2.8846153846153846},"selectorByRuleSizes":[{"selector":".btn-orange:disabled,.btn-orange.disabled","declarations":5},{"selector":".btn-transparent:hover,.btn-transparent:active","declarations":4},{"selector":".btn-transparent","declarations":4},{"selector":".btn-outline-green:disabled,.btn-outline-green.disabled","declarations":4},{"selector":".btn-outline-green:hover,.btn-outline-green:active,.btn-outline-green.selected,[open]>.btn-outline-green","declarations":4},{"selector":".btn-outline-orange:disabled,.btn-outline-orange.disabled","declarations":4},{"selector":".btn-outline-orange:hover,.btn-outline-orange:active,.btn-outline-orange.selected,[open]>.btn-outline-orange","declarations":4},{"selector":".btn-outline-purple:disabled,.btn-outline-purple.disabled","declarations":4},{"selector":".btn-outline-purple:hover,.btn-outline-purple:active,.btn-outline-purple.selected,[open]>.btn-outline-purple","declarations":4},{"selector":".btn-orange:active,.btn-orange.selected,[open]>.btn-orange","declarations":4},{"selector":".btn-orange:hover,.btn-orange.hover","declarations":4},{"selector":".btn-outline-green","declarations":3},{"selector":".btn-outline-orange","declarations":3},{"selector":".btn-outline-purple","declarations":3},{"selector":".btn-orange","declarations":3},{"selector":".btn-outline-green:focus","declarations":2},{"selector":".btn-outline-green:hover .Counter,.btn-outline-green:active .Counter,.btn-outline-green.selected .Counter,[open]>.btn-outline-green .Counter","declarations":2},{"selector":".btn-outline-orange:focus","declarations":2},{"selector":".btn-outline-orange:hover .Counter,.btn-outline-orange:active .Counter,.btn-outline-orange.selected .Counter,[open]>.btn-outline-orange .Counter","declarations":2},{"selector":".btn-outline-purple:focus","declarations":2},{"selector":".btn-outline-purple:hover .Counter,.btn-outline-purple:active .Counter,.btn-outline-purple.selected .Counter,[open]>.btn-outline-purple .Counter","declarations":2},{"selector":".btn-orange .Counter","declarations":2},{"selector":".btn-outline-green .Counter","declarations":1},{"selector":".btn-outline-orange .Counter","declarations":1},{"selector":".btn-outline-purple .Counter","declarations":1},{"selector":".btn-orange:focus,.btn-orange.focus","declarations":1}]},"selectors":{"total":53,"type":0,"class":53,"id":0,"pseudoClass":24,"pseudoElement":0,"values":[".btn-orange",".btn-orange:focus",".btn-orange.focus",".btn-orange:hover",".btn-orange.hover",".btn-orange:active",".btn-orange.selected","[open]>.btn-orange",".btn-orange:disabled",".btn-orange.disabled",".btn-orange .Counter",".btn-outline-purple",".btn-outline-purple .Counter",".btn-outline-purple:hover",".btn-outline-purple:active",".btn-outline-purple.selected","[open]>.btn-outline-purple",".btn-outline-purple:hover .Counter",".btn-outline-purple:active .Counter",".btn-outline-purple.selected .Counter","[open]>.btn-outline-purple .Counter",".btn-outline-purple:focus",".btn-outline-purple:disabled",".btn-outline-purple.disabled",".btn-outline-orange",".btn-outline-orange .Counter",".btn-outline-orange:hover",".btn-outline-orange:active",".btn-outline-orange.selected","[open]>.btn-outline-orange",".btn-outline-orange:hover .Counter",".btn-outline-orange:active .Counter",".btn-outline-orange.selected .Counter","[open]>.btn-outline-orange .Counter",".btn-outline-orange:focus",".btn-outline-orange:disabled",".btn-outline-orange.disabled",".btn-outline-green",".btn-outline-green .Counter",".btn-outline-green:hover",".btn-outline-green:active",".btn-outline-green.selected","[open]>.btn-outline-green",".btn-outline-green:hover .Counter",".btn-outline-green:active .Counter",".btn-outline-green.selected .Counter","[open]>.btn-outline-green .Counter",".btn-outline-green:focus",".btn-outline-green:disabled",".btn-outline-green.disabled",".btn-transparent",".btn-transparent:hover",".btn-transparent:active"],"specificity":{"max":30,"average":21.32075471698113}},"declarations":{"total":75,"unique":36,"properties":{"color":["#fff","rgba(255,255,255,0.75)","#f46909","#6f42c1","#fff","#6f42c1","rgba(27,31,35,0.3)","#f66a0a","#fff","#f66a0a","rgba(27,31,35,0.3)","#28a745","#fff","#28a745","rgba(27,31,35,0.3)","#fff","#2f363d"],"background-color":["#d25a08","#c85607","#c65e17","#e9ad83","#fff","#fff","rgba(27,31,35,0.07)","#6f42c1","#fff","#fff","#fff","rgba(27,31,35,0.07)","#f66a0a","#fff","#fff","#fff","rgba(27,31,35,0.07)","#28a745","#fff","#fff","transparent","#fff"],"background-image":["linear-gradient(-180deg, #f7802f 0%, #d25a08 90%)","linear-gradient(-180deg, #f77a25 0%, #c85607 90%)","none","none","none","none","none","none","none","none","none","none"],"box-shadow":["0 0 0 0.2em rgba(247,128,47,0.4)","inset 0 0.15em 0.3em rgba(27,31,35,0.15)","none","0 0 0 0.2em rgba(111,66,193,0.4)","none","0 0 0 0.2em rgba(246,106,10,0.4)","none","0 0 0 0.2em rgba(40,167,69,0.4)","none"],"background-position":["-.5em"],"border-color":["rgba(27,31,35,0.5)","rgba(27,31,35,0.5)","rgba(27,31,35,0.2)","#6f42c1","#6f42c1","rgba(27,31,35,0.15)","#f66a0a","#f66a0a","rgba(27,31,35,0.15)","#28a745","#28a745","rgba(27,31,35,0.15)","#fff"],"border":["1px solid rgba(255,255,255,0.5)"]}},"mediaQueries":{"total":0,"unique":0,"values":[],"contents":[]}}}
+1
node_modules/primer-marketing-buttons/build/index.js
··· 1 + module.exports = {"cssstats":{"size":3296,"gzipSize":664,"humanizedSize":"3kB","humanizedGzipSize":"664B","rules":{"total":26,"size":{"graph":[3,1,4,4,5,2,3,1,4,2,2,4,3,1,4,2,2,4,3,1,4,2,2,4,4,4],"max":5,"average":2.8846153846153846},"selectorByRuleSizes":[{"selector":".btn-orange:disabled,.btn-orange.disabled","declarations":5},{"selector":".btn-transparent:hover,.btn-transparent:active","declarations":4},{"selector":".btn-transparent","declarations":4},{"selector":".btn-outline-green:disabled,.btn-outline-green.disabled","declarations":4},{"selector":".btn-outline-green:hover,.btn-outline-green:active,.btn-outline-green.selected,[open]>.btn-outline-green","declarations":4},{"selector":".btn-outline-orange:disabled,.btn-outline-orange.disabled","declarations":4},{"selector":".btn-outline-orange:hover,.btn-outline-orange:active,.btn-outline-orange.selected,[open]>.btn-outline-orange","declarations":4},{"selector":".btn-outline-purple:disabled,.btn-outline-purple.disabled","declarations":4},{"selector":".btn-outline-purple:hover,.btn-outline-purple:active,.btn-outline-purple.selected,[open]>.btn-outline-purple","declarations":4},{"selector":".btn-orange:active,.btn-orange.selected,[open]>.btn-orange","declarations":4},{"selector":".btn-orange:hover,.btn-orange.hover","declarations":4},{"selector":".btn-outline-green","declarations":3},{"selector":".btn-outline-orange","declarations":3},{"selector":".btn-outline-purple","declarations":3},{"selector":".btn-orange","declarations":3},{"selector":".btn-outline-green:focus","declarations":2},{"selector":".btn-outline-green:hover .Counter,.btn-outline-green:active .Counter,.btn-outline-green.selected .Counter,[open]>.btn-outline-green .Counter","declarations":2},{"selector":".btn-outline-orange:focus","declarations":2},{"selector":".btn-outline-orange:hover .Counter,.btn-outline-orange:active .Counter,.btn-outline-orange.selected .Counter,[open]>.btn-outline-orange .Counter","declarations":2},{"selector":".btn-outline-purple:focus","declarations":2},{"selector":".btn-outline-purple:hover .Counter,.btn-outline-purple:active .Counter,.btn-outline-purple.selected .Counter,[open]>.btn-outline-purple .Counter","declarations":2},{"selector":".btn-orange .Counter","declarations":2},{"selector":".btn-outline-green .Counter","declarations":1},{"selector":".btn-outline-orange .Counter","declarations":1},{"selector":".btn-outline-purple .Counter","declarations":1},{"selector":".btn-orange:focus,.btn-orange.focus","declarations":1}]},"selectors":{"total":53,"type":0,"class":53,"id":0,"pseudoClass":24,"pseudoElement":0,"values":[".btn-orange",".btn-orange:focus",".btn-orange.focus",".btn-orange:hover",".btn-orange.hover",".btn-orange:active",".btn-orange.selected","[open]>.btn-orange",".btn-orange:disabled",".btn-orange.disabled",".btn-orange .Counter",".btn-outline-purple",".btn-outline-purple .Counter",".btn-outline-purple:hover",".btn-outline-purple:active",".btn-outline-purple.selected","[open]>.btn-outline-purple",".btn-outline-purple:hover .Counter",".btn-outline-purple:active .Counter",".btn-outline-purple.selected .Counter","[open]>.btn-outline-purple .Counter",".btn-outline-purple:focus",".btn-outline-purple:disabled",".btn-outline-purple.disabled",".btn-outline-orange",".btn-outline-orange .Counter",".btn-outline-orange:hover",".btn-outline-orange:active",".btn-outline-orange.selected","[open]>.btn-outline-orange",".btn-outline-orange:hover .Counter",".btn-outline-orange:active .Counter",".btn-outline-orange.selected .Counter","[open]>.btn-outline-orange .Counter",".btn-outline-orange:focus",".btn-outline-orange:disabled",".btn-outline-orange.disabled",".btn-outline-green",".btn-outline-green .Counter",".btn-outline-green:hover",".btn-outline-green:active",".btn-outline-green.selected","[open]>.btn-outline-green",".btn-outline-green:hover .Counter",".btn-outline-green:active .Counter",".btn-outline-green.selected .Counter","[open]>.btn-outline-green .Counter",".btn-outline-green:focus",".btn-outline-green:disabled",".btn-outline-green.disabled",".btn-transparent",".btn-transparent:hover",".btn-transparent:active"],"specificity":{"max":30,"average":21.32075471698113}},"declarations":{"total":75,"unique":36,"properties":{"color":["#fff","rgba(255,255,255,0.75)","#f46909","#6f42c1","#fff","#6f42c1","rgba(27,31,35,0.3)","#f66a0a","#fff","#f66a0a","rgba(27,31,35,0.3)","#28a745","#fff","#28a745","rgba(27,31,35,0.3)","#fff","#2f363d"],"background-color":["#d25a08","#c85607","#c65e17","#e9ad83","#fff","#fff","rgba(27,31,35,0.07)","#6f42c1","#fff","#fff","#fff","rgba(27,31,35,0.07)","#f66a0a","#fff","#fff","#fff","rgba(27,31,35,0.07)","#28a745","#fff","#fff","transparent","#fff"],"background-image":["linear-gradient(-180deg, #f7802f 0%, #d25a08 90%)","linear-gradient(-180deg, #f77a25 0%, #c85607 90%)","none","none","none","none","none","none","none","none","none","none"],"box-shadow":["0 0 0 0.2em rgba(247,128,47,0.4)","inset 0 0.15em 0.3em rgba(27,31,35,0.15)","none","0 0 0 0.2em rgba(111,66,193,0.4)","none","0 0 0 0.2em rgba(246,106,10,0.4)","none","0 0 0 0.2em rgba(40,167,69,0.4)","none"],"background-position":["-.5em"],"border-color":["rgba(27,31,35,0.5)","rgba(27,31,35,0.5)","rgba(27,31,35,0.2)","#6f42c1","#6f42c1","rgba(27,31,35,0.15)","#f66a0a","#f66a0a","rgba(27,31,35,0.15)","#28a745","#28a745","rgba(27,31,35,0.15)","#fff"],"border":["1px solid rgba(255,255,255,0.5)"]}},"mediaQueries":{"total":0,"unique":0,"values":[],"contents":[]}}}
+3
node_modules/primer-marketing-buttons/index.scss
··· 1 + // support files 2 + @import "primer-support/index.scss"; 3 + @import "./lib/button.scss";
+24
node_modules/primer-marketing-buttons/lib/button.scss
··· 1 + .btn-orange { @include btn-solid($white, lighten($orange-500, 7.5%), darken($orange-500, 7.5%)); } 2 + 3 + .btn-outline-purple { @include btn-outline($purple); } 4 + .btn-outline-orange { @include btn-outline($orange); } 5 + .btn-outline-green { @include btn-outline($green); } 6 + 7 + @mixin btn-transparent-active { 8 + color: $gray-800; 9 + background-color: $white; 10 + background-image: none; 11 + border-color: $white; 12 + } 13 + 14 + .btn-transparent { 15 + color: $white; 16 + background-color: transparent; 17 + background-image: none; 18 + border: $border-width $border-style $white-fade-50; 19 + 20 + &:hover, 21 + &:active { 22 + @include btn-transparent-active; 23 + } 24 + }
+74
node_modules/primer-marketing-buttons/package.json
··· 1 + { 2 + "_from": "primer-marketing-buttons@1.0.13", 3 + "_id": "primer-marketing-buttons@1.0.13", 4 + "_inBundle": false, 5 + "_integrity": "sha512-1MzzrG/68zaEcQypG50uELwQ4MHH9b8aTy3jXxayZRc1qvZaLh5SEcSIHWe5lMIZk8qrtYhr22py9+kibyTKIQ==", 6 + "_location": "/primer-marketing-buttons", 7 + "_phantomChildren": {}, 8 + "_requested": { 9 + "type": "version", 10 + "registry": true, 11 + "raw": "primer-marketing-buttons@1.0.13", 12 + "name": "primer-marketing-buttons", 13 + "escapedName": "primer-marketing-buttons", 14 + "rawSpec": "1.0.13", 15 + "saveSpec": null, 16 + "fetchSpec": "1.0.13" 17 + }, 18 + "_requiredBy": [ 19 + "/primer-marketing" 20 + ], 21 + "_resolved": "https://registry.npmjs.org/primer-marketing-buttons/-/primer-marketing-buttons-1.0.13.tgz", 22 + "_shasum": "578fe8682650a4211b952afd7b10c10e8b1b0f3b", 23 + "_spec": "primer-marketing-buttons@1.0.13", 24 + "_where": "/Users/sophieshepherd/Desktop/projects/profile-generator/node_modules/primer-marketing", 25 + "author": { 26 + "name": "GitHub, Inc." 27 + }, 28 + "bugs": { 29 + "url": "https://github.com/primer/primer/issues" 30 + }, 31 + "bundleDependencies": false, 32 + "dependencies": { 33 + "primer-support": "4.7.2" 34 + }, 35 + "deprecated": false, 36 + "description": "Buttons for marketing websites at GitHub", 37 + "files": [ 38 + "index.scss", 39 + "lib", 40 + "build" 41 + ], 42 + "homepage": "http://primer.github.io/", 43 + "keywords": [ 44 + "css", 45 + "github", 46 + "primer", 47 + "design-system", 48 + "style", 49 + "buttons" 50 + ], 51 + "license": "MIT", 52 + "main": "build/index.js", 53 + "name": "primer-marketing-buttons", 54 + "primer": { 55 + "category": "marketing", 56 + "module_type": "components" 57 + }, 58 + "repository": { 59 + "type": "git", 60 + "url": "https://github.com/primer/primer/tree/master/modules/primer-marketing-buttons" 61 + }, 62 + "sass": "index.scss", 63 + "scripts": { 64 + "build": "../../script/npm-run primer-module-build index.scss", 65 + "lint": "../../script/lint-scss", 66 + "postpublish": "../../script/notify success", 67 + "prepare": "npm run build", 68 + "prepublishOnly": "../../script/notify pending", 69 + "test": "../../script/npm-run-all build lint test-docs", 70 + "test-docs": "../../script/test-docs" 71 + }, 72 + "style": "build/build.css", 73 + "version": "1.0.13" 74 + }
+21
node_modules/primer-marketing-support/LICENSE
··· 1 + The MIT License (MIT) 2 + 3 + Copyright (c) 2019 GitHub Inc. 4 + 5 + Permission is hereby granted, free of charge, to any person obtaining a copy 6 + of this software and associated documentation files (the "Software"), to deal 7 + in the Software without restriction, including without limitation the rights 8 + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 + copies of the Software, and to permit persons to whom the Software is 10 + furnished to do so, subject to the following conditions: 11 + 12 + The above copyright notice and this permission notice shall be included in all 13 + copies or substantial portions of the Software. 14 + 15 + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 + SOFTWARE.
+64
node_modules/primer-marketing-support/README.md
··· 1 + # Primer Marketing Support 2 + 3 + [![npm version](https://img.shields.io/npm/v/primer-marketing-support.svg)](https://www.npmjs.org/package/primer-marketing-support) 4 + [![Build Status](https://travis-ci.org/primer/primer.svg?branch=master)](https://travis-ci.org/primer/primer) 5 + 6 + > Support files are Sass variables, mixins, and functions that we import into different bases for use across components, objects, and utilities. Sharing these common properties across GitHub sites helps us to keep our styles more consistent. 7 + > 8 + > Most of the time to include these you'll only need to add `@import "./primer-marketing-support";` to the top of your bundle. If you want only a specific partial you can import them separately. 9 + 10 + This repository is a module of the full [primer][primer] repository. 11 + 12 + ## Install 13 + 14 + This repository is distributed with [npm][npm]. After [installing npm][install-npm], you can install `support` with this command. 15 + 16 + ``` 17 + $ npm install --save support 18 + ``` 19 + 20 + ## Usage 21 + 22 + The source files included are written in [Sass][sass] (`scss`) You can simply point your sass `include-path` at your `node_modules` directory and import it like this. 23 + 24 + ```scss 25 + @import "primer-marketing-support/index.scss"; 26 + ``` 27 + 28 + You can also import specific portions of the module by importing those partials from the `/lib/` folder. _Make sure you import any requirements along with the modules._ 29 + 30 + ## Documentation 31 + 32 + <!-- %docs 33 + title: Marketing support 34 + path: support/marketing-variables 35 + status: Stable 36 + --> 37 + 38 + ### Extended spacing scale 39 + This module extends the `primer-core` spacing scale for marketing site needs. These are useful for achieving bigger vertical spacing between sections on marketing sites. 40 + 41 + Starting where the `primer-core` spacing scale ends at spacer 6, the marketing scale first steps up with `8px` for spacer 7 then steps in increments of `16px` from spacer 8 up to 12. 42 + 43 + | Scale | Value | 44 + |-------|-------| 45 + | 7 | 48 | 46 + | 8 | 64 | 47 + | 9 | 80 | 48 + | 10 | 96 | 49 + | 11 | 112 | 50 + | 12 | 128 | 51 + 52 + See [primer-marketing-support](https://npm.im/primer-marketing-support) for the extended spacing scale used for marketing needs and the related y-axis spacing utilities for [margin](/css/utilities/marketing-margin) and [padding](/css/utilities/marketing-padding). 53 + 54 + <!-- %enddocs --> 55 + 56 + ## License 57 + 58 + MIT &copy; [GitHub](https://github.com/) 59 + 60 + [primer]: https://github.com/primer/primer 61 + [docs]: http://primer.github.io/ 62 + [npm]: https://www.npmjs.com/ 63 + [install-npm]: https://docs.npmjs.com/getting-started/installing-node 64 + [sass]: http://sass-lang.com/
+1
node_modules/primer-marketing-support/index.scss
··· 1 + @import "./lib/variables.scss";
+14
node_modules/primer-marketing-support/lib/variables.scss
··· 1 + // Type 2 + $alt-body-font: Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", sans-serif; 3 + $alt-mono-font: $mono-font; 4 + 5 + // Increases primer-core scale first by 8px for spacer-7 then by 16px step increments for spacer-8 to spacer-12 6 + // i.e. After 40px, we have 48, 64, 80, 96, etc. 7 + $spacer-7: $spacer * 6; // 48px 8 + $spacer-8: $spacer * 8; // 64px 9 + $spacer-9: $spacer * 10; // 80px 10 + $spacer-10: $spacer * 12; // 96px 11 + $spacer-11: $spacer * 14; // 112px 12 + $spacer-12: $spacer * 16; // 128px 13 + 14 + $marketingSpacers: $spacer-7, $spacer-8, $spacer-9, $spacer-10, $spacer-11, $spacer-12;
+74
node_modules/primer-marketing-support/package.json
··· 1 + { 2 + "_from": "primer-marketing-support@1.5.6", 3 + "_id": "primer-marketing-support@1.5.6", 4 + "_inBundle": false, 5 + "_integrity": "sha512-YU8ein52s/W+s4a4hHZZJbHURfz2FLI5ItrUxqaqJjcT0O2bALP/JbuCZDrbvWxuOSK4kbF22ANmmMGWFIzp/Q==", 6 + "_location": "/primer-marketing-support", 7 + "_phantomChildren": {}, 8 + "_requested": { 9 + "type": "version", 10 + "registry": true, 11 + "raw": "primer-marketing-support@1.5.6", 12 + "name": "primer-marketing-support", 13 + "escapedName": "primer-marketing-support", 14 + "rawSpec": "1.5.6", 15 + "saveSpec": null, 16 + "fetchSpec": "1.5.6" 17 + }, 18 + "_requiredBy": [ 19 + "/primer-marketing", 20 + "/primer-marketing-type", 21 + "/primer-marketing-utilities", 22 + "/primer-page-headers", 23 + "/primer-page-sections", 24 + "/primer-tables" 25 + ], 26 + "_resolved": "https://registry.npmjs.org/primer-marketing-support/-/primer-marketing-support-1.5.6.tgz", 27 + "_shasum": "db127e18a92b20f9591b334a5841d73f90e0ae6c", 28 + "_spec": "primer-marketing-support@1.5.6", 29 + "_where": "/Users/sophieshepherd/Desktop/projects/profile-generator/node_modules/primer-marketing", 30 + "author": { 31 + "name": "GitHub, Inc." 32 + }, 33 + "bugs": { 34 + "url": "https://github.com/primer/primer/issues" 35 + }, 36 + "bundleDependencies": false, 37 + "deprecated": false, 38 + "description": "Sass variables, mixins, and functions for use in our components.", 39 + "files": [ 40 + "index.scss", 41 + "lib" 42 + ], 43 + "homepage": "http://primer.github.io/", 44 + "keywords": [ 45 + "primer", 46 + "css", 47 + "github", 48 + "design-system", 49 + "mixins", 50 + "functions", 51 + "variables", 52 + "scss" 53 + ], 54 + "license": "MIT", 55 + "name": "primer-marketing-support", 56 + "primer": { 57 + "category": "marketing", 58 + "module_type": "support" 59 + }, 60 + "repository": { 61 + "type": "git", 62 + "url": "https://github.com/primer/primer/tree/master/modules/primer-marketing-support" 63 + }, 64 + "sass": "index.scss", 65 + "scripts": { 66 + "build": "../../script/npm-run primer-module-build index.scss", 67 + "lint": "../../script/lint-scss", 68 + "postpublish": "../../script/notify success", 69 + "prepublishOnly": "../../script/notify pending", 70 + "test": "npm run lint" 71 + }, 72 + "style": "build/build.css", 73 + "version": "1.5.6" 74 + }
+21
node_modules/primer-marketing-type/LICENSE
··· 1 + The MIT License (MIT) 2 + 3 + Copyright (c) 2019 GitHub Inc. 4 + 5 + Permission is hereby granted, free of charge, to any person obtaining a copy 6 + of this software and associated documentation files (the "Software"), to deal 7 + in the Software without restriction, including without limitation the rights 8 + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 + copies of the Software, and to permit persons to whom the Software is 10 + furnished to do so, subject to the following conditions: 11 + 12 + The above copyright notice and this permission notice shall be included in all 13 + copies or substantial portions of the Software. 14 + 15 + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 + SOFTWARE.
+92
node_modules/primer-marketing-type/README.md
··· 1 + # Primer Marketing CSS Typography 2 + 3 + [![npm version](https://img.shields.io/npm/v/primer-marketing-type.svg)](https://www.npmjs.org/package/primer-marketing-type) 4 + [![Build Status](https://travis-ci.org/primer/primer.svg?branch=master)](https://travis-ci.org/primer/primer) 5 + 6 + > Flash messages, or alerts, inform users of successful or pending actions. Use them sparingly. Don’t show more than one at a time. 7 + 8 + This repository is a module of the full [primer][primer] repository. 9 + 10 + ## Documentation 11 + 12 + <!-- %docs 13 + title: Marketing Typography 14 + path: utilities/marketing-type 15 + status: New Release 16 + --> 17 + 18 + The typography for our marketing pages differs slightly from what is in Primer's core--it is responsive, on a slightly different scale, and headlines are in a different font (Roboto). 19 + 20 + 21 + ## Heading Utilities 22 + 23 + Use `.alt-h1` – `.alt-h6` to change an element's font, size, and weight on marketing pages. 24 + 25 + ```html title="Heading Utilities" 26 + 27 + <p class="alt-h1">Pizza 1</p> 28 + <p class="alt-h2">Pizza 2</p> 29 + <p class="alt-h3">Pizza 3</p> 30 + <p class="alt-h4">Pizza 4</p> 31 + <p class="alt-h5">Pizza 5</p> 32 + <p class="alt-h6">Pizza 6</p> 33 + 34 + ``` 35 + 36 + ## Typographic Utilities 37 + 38 + These utilities are meant to be used in addition to Primer's core utilities. 39 + 40 + ```html title="Typographic Utilities" 41 + 42 + <p class="alt-lead text-gray">I'm a lead paragraph. Bacon ipsum dolor amet tri-tip chicken kielbasa, cow swine beef corned beef ground round prosciutto hamburger porchetta sausage alcatra tail.</p> 43 + 44 + <p class="text-gray">I'm a regular paragraph, except I'm gray. Bacon ipsum dolor amet tri-tip chicken kielbasa, cow swine beef corned beef ground round prosciutto hamburger porchetta sausage alcatra tail.</p> 45 + 46 + <p class="text-gray alt-text-small">And I'm a tiny lil' baby paragraph. Bacon ipsum dolor amet tri-tip chicken kielbasa, cow swine beef corned beef ground round prosciutto hamburger porchetta sausage alcatra tail.</p> 47 + 48 + <p class="alt-mono-font text-gray">Occasionally we want to use a mono font, there is a utility class for that.</p> 49 + 50 + <p class="pullquote">I'm a pullquote. Someone said these words in real life, and now they're on the internet</p> 51 + 52 + ``` 53 + 54 + <!-- %enddocs --> 55 + 56 + ## Install 57 + 58 + This repository is distributed with [npm][npm]. After [installing npm][install-npm], you can install `primer-marketing-typography` with this command. 59 + 60 + ``` 61 + $ npm install --save primer-marketing-typography 62 + ``` 63 + 64 + ## Usage 65 + 66 + The source files included are written in [Sass][sass] (`scss`) You can simply point your sass `include-path` at your `node_modules` directory and import it like this. 67 + 68 + ```scss 69 + @import "primer-marketing-typography/index.scss"; 70 + ``` 71 + 72 + You can also import specific portions of the module by importing those partials from the `/lib/` folder. _Make sure you import any requirements along with the modules._ 73 + 74 + ## Build 75 + 76 + For a compiled **css** version of this module, a npm script is included that will output a css version to `build/build.css` 77 + 78 + ``` 79 + $ npm run build 80 + ``` 81 + 82 + ## License 83 + 84 + MIT &copy; [GitHub](https://github.com/) 85 + 86 + [primer]: https://github.com/primer/primer 87 + [primer-support]: https://github.com/primer/primer-support 88 + [support]: https://github.com/primer/primer-support 89 + [docs]: http://primer.github.io/ 90 + [npm]: https://www.npmjs.com/ 91 + [install-npm]: https://docs.npmjs.com/getting-started/installing-node 92 + [sass]: http://sass-lang.com/
+1
node_modules/primer-marketing-type/build/build.css
··· 1 + .alt-mono-font{font-family:"SFMono-Regular",Consolas,"Liberation Mono",Menlo,Courier,monospace}.alt-h0,.alt-h1,.alt-h2,.alt-h3,.alt-h4,.alt-h5,.alt-h6,.alt-lead{-webkit-font-smoothing:antialiased;font-family:Roboto,-apple-system,BlinkMacSystemFont,"Helvetica Neue","Segoe UI","Oxygen","Ubuntu","Cantarell","Open Sans",sans-serif}.alt-h0{font-size:48px;font-weight:300}@media (min-width: 768px){.alt-h0{font-size:54px}}@media (min-width: 1012px){.alt-h0{font-size:72px}}.alt-h1{font-size:36px;font-weight:300}@media (min-width: 768px){.alt-h1{font-size:48px}}@media (min-width: 1012px){.alt-h1{font-size:54px}}.alt-h2{font-size:28px;font-weight:300}@media (min-width: 768px){.alt-h2{font-size:34px}}@media (min-width: 1012px){.alt-h2{font-size:38px}}.alt-h3{font-size:18px;font-weight:400}@media (min-width: 768px){.alt-h3{font-size:20px}}@media (min-width: 1012px){.alt-h3{font-size:22px}}.alt-h4{font-size:16px;font-weight:500}.alt-h5{font-size:14px;font-weight:500}.alt-h6{font-size:12px;font-weight:500}.alt-lead{-webkit-font-smoothing:antialiased;font-size:21px;font-weight:300}@media (min-width: 768px){.alt-lead{font-size:24px}}@media (min-width: 1012px){.alt-lead{font-size:26px}}.alt-text-small{font-size:14px !important}.pullquote{padding-top:0;padding-bottom:0;padding-left:8px;margin-bottom:24px;font-family:"SFMono-Regular",Consolas,"Liberation Mono",Menlo,Courier,monospace;font-size:16px;line-height:1.4;color:#586069;border-left:3px solid #e1e4e8}@media (min-width: 768px){.pullquote{padding-left:12px;margin-bottom:32px;margin-left:-15px;font-size:18px;line-height:1.5}}
+1
node_modules/primer-marketing-type/build/data.json
··· 1 + {"cssstats":{"size":1587,"gzipSize":540,"humanizedSize":"2kB","humanizedGzipSize":"540B","rules":{"total":23,"size":{"graph":[1,2,2,1,1,2,1,1,2,1,1,2,1,1,2,2,2,3,1,1,1,9,5],"max":9,"average":1.9565217391304348},"selectorByRuleSizes":[{"selector":".pullquote","declarations":9},{"selector":".pullquote","declarations":5},{"selector":".alt-lead","declarations":3},{"selector":".alt-h6","declarations":2},{"selector":".alt-h5","declarations":2},{"selector":".alt-h4","declarations":2},{"selector":".alt-h3","declarations":2},{"selector":".alt-h2","declarations":2},{"selector":".alt-h1","declarations":2},{"selector":".alt-h0","declarations":2},{"selector":".alt-h0,.alt-h1,.alt-h2,.alt-h3,.alt-h4,.alt-h5,.alt-h6,.alt-lead","declarations":2},{"selector":".alt-text-small","declarations":1},{"selector":".alt-lead","declarations":1},{"selector":".alt-lead","declarations":1},{"selector":".alt-h3","declarations":1},{"selector":".alt-h3","declarations":1},{"selector":".alt-h2","declarations":1},{"selector":".alt-h2","declarations":1},{"selector":".alt-h1","declarations":1},{"selector":".alt-h1","declarations":1},{"selector":".alt-h0","declarations":1},{"selector":".alt-h0","declarations":1},{"selector":".alt-mono-font","declarations":1}]},"selectors":{"total":30,"type":0,"class":30,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-mono-font",".alt-h0",".alt-h1",".alt-h2",".alt-h3",".alt-h4",".alt-h5",".alt-h6",".alt-lead",".alt-h0",".alt-h0",".alt-h0",".alt-h1",".alt-h1",".alt-h1",".alt-h2",".alt-h2",".alt-h2",".alt-h3",".alt-h3",".alt-h3",".alt-h4",".alt-h5",".alt-h6",".alt-lead",".alt-lead",".alt-lead",".alt-text-small",".pullquote",".pullquote"],"specificity":{"max":10,"average":10}},"declarations":{"total":45,"unique":33,"properties":{"font-family":["\"SFMono-Regular\",Consolas,\"Liberation Mono\",Menlo,Courier,monospace","Roboto,-apple-system,BlinkMacSystemFont,\"Helvetica Neue\",\"Segoe UI\",\"Oxygen\",\"Ubuntu\",\"Cantarell\",\"Open Sans\",sans-serif","\"SFMono-Regular\",Consolas,\"Liberation Mono\",Menlo,Courier,monospace"],"-webkit-font-smoothing":["antialiased","antialiased"],"font-size":["48px","54px","72px","36px","48px","54px","28px","34px","38px","18px","20px","22px","16px","14px","12px","21px","24px","26px","14px","16px","18px"],"font-weight":["300","300","300","400","500","500","500","300"],"padding-top":["0"],"padding-bottom":["0"],"padding-left":["8px","12px"],"margin-bottom":["24px","32px"],"line-height":["1.4","1.5"],"color":["#586069"],"border-left":["3px solid #e1e4e8"],"margin-left":["-15px"]}},"mediaQueries":{"total":11,"unique":2,"values":["(min-width: 768px)","(min-width: 1012px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 768px)"],"contents":[{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h0","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h0"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["54px"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h0","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h0"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["72px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h1","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h1"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["48px"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h1","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h1"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["54px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h2","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h2"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["34px"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h2","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h2"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["38px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h3","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h3"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["20px"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h3","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h3"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["22px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-lead","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-lead"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["24px"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-lead","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-lead"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["26px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[5],"max":5,"average":5},"selectorByRuleSizes":[{"selector":".pullquote","declarations":5}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pullquote"],"specificity":{"max":10,"average":10}},"declarations":{"total":5,"unique":5,"properties":{"padding-left":["12px"],"margin-bottom":["32px"],"margin-left":["-15px"],"font-size":["18px"],"line-height":["1.5"]}}}]}}}
+1
node_modules/primer-marketing-type/build/index.js
··· 1 + module.exports = {"cssstats":{"size":1587,"gzipSize":540,"humanizedSize":"2kB","humanizedGzipSize":"540B","rules":{"total":23,"size":{"graph":[1,2,2,1,1,2,1,1,2,1,1,2,1,1,2,2,2,3,1,1,1,9,5],"max":9,"average":1.9565217391304348},"selectorByRuleSizes":[{"selector":".pullquote","declarations":9},{"selector":".pullquote","declarations":5},{"selector":".alt-lead","declarations":3},{"selector":".alt-h6","declarations":2},{"selector":".alt-h5","declarations":2},{"selector":".alt-h4","declarations":2},{"selector":".alt-h3","declarations":2},{"selector":".alt-h2","declarations":2},{"selector":".alt-h1","declarations":2},{"selector":".alt-h0","declarations":2},{"selector":".alt-h0,.alt-h1,.alt-h2,.alt-h3,.alt-h4,.alt-h5,.alt-h6,.alt-lead","declarations":2},{"selector":".alt-text-small","declarations":1},{"selector":".alt-lead","declarations":1},{"selector":".alt-lead","declarations":1},{"selector":".alt-h3","declarations":1},{"selector":".alt-h3","declarations":1},{"selector":".alt-h2","declarations":1},{"selector":".alt-h2","declarations":1},{"selector":".alt-h1","declarations":1},{"selector":".alt-h1","declarations":1},{"selector":".alt-h0","declarations":1},{"selector":".alt-h0","declarations":1},{"selector":".alt-mono-font","declarations":1}]},"selectors":{"total":30,"type":0,"class":30,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-mono-font",".alt-h0",".alt-h1",".alt-h2",".alt-h3",".alt-h4",".alt-h5",".alt-h6",".alt-lead",".alt-h0",".alt-h0",".alt-h0",".alt-h1",".alt-h1",".alt-h1",".alt-h2",".alt-h2",".alt-h2",".alt-h3",".alt-h3",".alt-h3",".alt-h4",".alt-h5",".alt-h6",".alt-lead",".alt-lead",".alt-lead",".alt-text-small",".pullquote",".pullquote"],"specificity":{"max":10,"average":10}},"declarations":{"total":45,"unique":33,"properties":{"font-family":["\"SFMono-Regular\",Consolas,\"Liberation Mono\",Menlo,Courier,monospace","Roboto,-apple-system,BlinkMacSystemFont,\"Helvetica Neue\",\"Segoe UI\",\"Oxygen\",\"Ubuntu\",\"Cantarell\",\"Open Sans\",sans-serif","\"SFMono-Regular\",Consolas,\"Liberation Mono\",Menlo,Courier,monospace"],"-webkit-font-smoothing":["antialiased","antialiased"],"font-size":["48px","54px","72px","36px","48px","54px","28px","34px","38px","18px","20px","22px","16px","14px","12px","21px","24px","26px","14px","16px","18px"],"font-weight":["300","300","300","400","500","500","500","300"],"padding-top":["0"],"padding-bottom":["0"],"padding-left":["8px","12px"],"margin-bottom":["24px","32px"],"line-height":["1.4","1.5"],"color":["#586069"],"border-left":["3px solid #e1e4e8"],"margin-left":["-15px"]}},"mediaQueries":{"total":11,"unique":2,"values":["(min-width: 768px)","(min-width: 1012px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 768px)"],"contents":[{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h0","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h0"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["54px"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h0","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h0"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["72px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h1","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h1"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["48px"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h1","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h1"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["54px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h2","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h2"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["34px"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h2","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h2"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["38px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h3","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h3"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["20px"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h3","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h3"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["22px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-lead","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-lead"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["24px"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-lead","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-lead"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["26px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[5],"max":5,"average":5},"selectorByRuleSizes":[{"selector":".pullquote","declarations":5}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pullquote"],"specificity":{"max":10,"average":10}},"declarations":{"total":5,"unique":5,"properties":{"padding-left":["12px"],"margin-bottom":["32px"],"margin-left":["-15px"],"font-size":["18px"],"line-height":["1.5"]}}}]}}}
+4
node_modules/primer-marketing-type/index.scss
··· 1 + // support files 2 + @import "primer-support/index.scss"; 3 + @import "primer-marketing-support/index.scss"; 4 + @import "./lib/typography.scss";
+124
node_modules/primer-marketing-type/lib/typography.scss
··· 1 + // Marketing font utility class 2 + 3 + .alt-mono-font { 4 + font-family: $alt-mono-font; 5 + } 6 + 7 + // 8 + // Headings 9 + 10 + .alt-h0, 11 + .alt-h1, 12 + .alt-h2, 13 + .alt-h3, 14 + .alt-h4, 15 + .alt-h5, 16 + .alt-h6, 17 + .alt-lead { 18 + -webkit-font-smoothing: antialiased; 19 + font-family: $alt-body-font; 20 + } 21 + 22 + @mixin alt-h0 { 23 + font-size: $h00-size; 24 + font-weight: $font-weight-light; 25 + @include breakpoint(md) { font-size: 54px; } 26 + @include breakpoint(lg) { font-size: 72px; } 27 + } 28 + 29 + .alt-h0 { 30 + @include alt-h0; 31 + } 32 + 33 + @mixin alt-h1 { 34 + font-size: 36px; 35 + font-weight: $font-weight-light; 36 + @include breakpoint(md) { font-size: $h00-size; } 37 + @include breakpoint(lg) { font-size: 54px; } 38 + } 39 + 40 + .alt-h1 { 41 + @include alt-h1; 42 + } 43 + 44 + @mixin alt-h2 { 45 + font-size: 28px; 46 + font-weight: $font-weight-light; 47 + @include breakpoint(md) { font-size: 34px; } 48 + @include breakpoint(lg) { font-size: 38px; } 49 + } 50 + 51 + .alt-h2 { 52 + @include alt-h2; 53 + } 54 + 55 + @mixin alt-h3 { 56 + font-size: 18px; 57 + font-weight: $font-weight-normal; 58 + @include breakpoint(md) { font-size: $h3-size; } 59 + @include breakpoint(lg) { font-size: 22px; } 60 + } 61 + 62 + .alt-h3 { 63 + @include alt-h3; 64 + } 65 + 66 + .alt-h4 { 67 + font-size: $h4-size; 68 + font-weight: $font-weight-semibold; 69 + } 70 + 71 + .alt-h5 { 72 + font-size: $h5-size; 73 + font-weight: $font-weight-semibold; 74 + } 75 + 76 + .alt-h6 { 77 + font-size: $h6-size; 78 + font-weight: $font-weight-semibold; 79 + } 80 + 81 + // Big opening paragraphs 82 + @mixin alt-lead { 83 + -webkit-font-smoothing: antialiased; 84 + font-size: 21px; 85 + font-weight: $font-weight-light; 86 + @include breakpoint(md) { font-size: $h2-size; } 87 + @include breakpoint(lg) { font-size: 26px; } 88 + } 89 + 90 + .alt-lead { 91 + @include alt-lead; 92 + } 93 + 94 + // For small text 95 + 96 + .alt-text-small { 97 + font-size: 14px !important; 98 + } 99 + 100 + // Pullquote 101 + 102 + @mixin pullquote { 103 + padding-top: 0; 104 + padding-bottom: 0; 105 + padding-left: $spacer; 106 + margin-bottom: $spacer-4; 107 + font-family: $alt-mono-font; 108 + font-size: $h4-size; 109 + line-height: 1.4; 110 + color: $text-gray; 111 + border-left: 3px solid $border-color; 112 + 113 + @include breakpoint(md) { 114 + padding-left: $spacer * 1.5; 115 + margin-bottom: $spacer-5; 116 + margin-left: (-$spacer * 1.5) - 3px; 117 + font-size: 18px; 118 + line-height: $lh-default; 119 + } 120 + } 121 + 122 + .pullquote { 123 + @include pullquote; 124 + }
+76
node_modules/primer-marketing-type/package.json
··· 1 + { 2 + "_from": "primer-marketing-type@1.4.13", 3 + "_id": "primer-marketing-type@1.4.13", 4 + "_inBundle": false, 5 + "_integrity": "sha512-ke6l3zgc4mF5ArDzZB1TJ5VHbZG2/uwekVROLQOK4v7XI0MkYZWA9tI+k8UhaFLSsw0vGqxM2ibKUzsQH61C8g==", 6 + "_location": "/primer-marketing-type", 7 + "_phantomChildren": {}, 8 + "_requested": { 9 + "type": "version", 10 + "registry": true, 11 + "raw": "primer-marketing-type@1.4.13", 12 + "name": "primer-marketing-type", 13 + "escapedName": "primer-marketing-type", 14 + "rawSpec": "1.4.13", 15 + "saveSpec": null, 16 + "fetchSpec": "1.4.13" 17 + }, 18 + "_requiredBy": [ 19 + "/primer-marketing" 20 + ], 21 + "_resolved": "https://registry.npmjs.org/primer-marketing-type/-/primer-marketing-type-1.4.13.tgz", 22 + "_shasum": "2a7bba4e900818d492aa2c8a732c4d0363850c19", 23 + "_spec": "primer-marketing-type@1.4.13", 24 + "_where": "/Users/sophieshepherd/Desktop/projects/profile-generator/node_modules/primer-marketing", 25 + "author": { 26 + "name": "GitHub, Inc." 27 + }, 28 + "bugs": { 29 + "url": "https://github.com/primer/primer/issues" 30 + }, 31 + "bundleDependencies": false, 32 + "dependencies": { 33 + "primer-marketing-support": "1.5.6", 34 + "primer-support": "4.7.2" 35 + }, 36 + "deprecated": false, 37 + "description": "Typography for marketing websites at GitHub", 38 + "files": [ 39 + "index.scss", 40 + "lib", 41 + "build" 42 + ], 43 + "homepage": "http://primer.github.io/", 44 + "keywords": [ 45 + "css", 46 + "github", 47 + "primer", 48 + "design-system", 49 + "style", 50 + "type", 51 + "typography" 52 + ], 53 + "license": "MIT", 54 + "main": "build/index.js", 55 + "name": "primer-marketing-type", 56 + "primer": { 57 + "category": "marketing", 58 + "module_type": "utilities" 59 + }, 60 + "repository": { 61 + "type": "git", 62 + "url": "https://github.com/primer/primer/tree/master/modules/primer-marketing-type" 63 + }, 64 + "sass": "index.scss", 65 + "scripts": { 66 + "build": "../../script/npm-run primer-module-build index.scss", 67 + "lint": "../../script/lint-scss", 68 + "postpublish": "../../script/notify success", 69 + "prepare": "npm run build", 70 + "prepublishOnly": "../../script/notify pending", 71 + "test": "../../script/npm-run-all build lint test-docs", 72 + "test-docs": "../../script/test-docs" 73 + }, 74 + "style": "build/build.css", 75 + "version": "1.4.13" 76 + }
+21
node_modules/primer-marketing-utilities/LICENSE
··· 1 + The MIT License (MIT) 2 + 3 + Copyright (c) 2019 GitHub Inc. 4 + 5 + Permission is hereby granted, free of charge, to any person obtaining a copy 6 + of this software and associated documentation files (the "Software"), to deal 7 + in the Software without restriction, including without limitation the rights 8 + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 + copies of the Software, and to permit persons to whom the Software is 10 + furnished to do so, subject to the following conditions: 11 + 12 + The above copyright notice and this permission notice shall be included in all 13 + copies or substantial portions of the Software. 14 + 15 + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 + SOFTWARE.
+47
node_modules/primer-marketing-utilities/README.md
··· 1 + # Primer Marketing CSS Utilities 2 + 3 + [![npm version](https://img.shields.io/npm/v/primer-marketing-utilities.svg)](https://www.npmjs.org/package/primer-marketing-utilities) 4 + [![Build Status](https://travis-ci.org/primer/primer.svg?branch=master)](https://travis-ci.org/primer/primer) 5 + 6 + This repository is a module of the full [primer-marketing-css][primer-marketing-css] repository. 7 + 8 + ## Install 9 + 10 + This repository is distributed with [npm][npm]. After [installing npm][install-npm], you can install `primer-marketing-utilities` with this command. 11 + 12 + ``` 13 + $ npm install --save primer-marketing-utilities 14 + ``` 15 + 16 + ## Usage 17 + 18 + The source files included are written in [Sass][sass] (`scss`) You can simply point your sass `include-path` at your `node_modules` directory and import it like this. 19 + 20 + ```scss 21 + @import "primer-marketing-utilities/index.scss"; 22 + ``` 23 + 24 + You can also import specific portions of the module by importing those partials from the `/lib/` folder. _Make sure you import any requirements along with the modules._ 25 + 26 + ## Build 27 + 28 + For a compiled **css** version of this module, a npm script is included that will output a css version to `build/build.css` The built css file is also included in the npm package. 29 + 30 + ``` 31 + $ npm run build 32 + ``` 33 + 34 + ## Documentation 35 + 36 + You can read more about utilities in the [docs folder](./docs/). 37 + 38 + ## License 39 + 40 + [MIT](./LICENSE) &copy; [GitHub](https://github.com/) 41 + 42 + [primer]: https://github.com/primer/primer 43 + [docs]: http://primer.github.io/ 44 + [npm]: https://www.npmjs.com/ 45 + [install-npm]: https://docs.npmjs.com/getting-started/installing-node 46 + [sass]: http://sass-lang.com/ 47 + [primer-marketing-css]: https://github.com/primer/primer-marketing
+1
node_modules/primer-marketing-utilities/build/build.css
··· 1 + .grayscale{filter:grayscale(100%)}.border-white-fade{border-color:rgba(255,255,255,0.15) !important}@media (min-width: 544px){.position-sm-relative{position:relative !important}.position-sm-absolute{position:absolute !important}.position-sm-fixed{position:fixed !important}}@media (min-width: 768px){.position-md-relative{position:relative !important}.position-md-absolute{position:absolute !important}.position-md-fixed{position:fixed !important}}@media (min-width: 1012px){.position-lg-relative{position:relative !important}.position-lg-absolute{position:absolute !important}.position-lg-fixed{position:fixed !important}}@media (min-width: 1280px){.position-xl-relative{position:relative !important}.position-xl-absolute{position:absolute !important}.position-xl-fixed{position:fixed !important}}.mt-7{margin-top:48px !important}.mb-7{margin-bottom:48px !important}.my-7{margin-top:48px !important;margin-bottom:48px !important}.mt-8{margin-top:64px !important}.mb-8{margin-bottom:64px !important}.my-8{margin-top:64px !important;margin-bottom:64px !important}.mt-9{margin-top:80px !important}.mb-9{margin-bottom:80px !important}.my-9{margin-top:80px !important;margin-bottom:80px !important}.mt-10{margin-top:96px !important}.mb-10{margin-bottom:96px !important}.my-10{margin-top:96px !important;margin-bottom:96px !important}.mt-11{margin-top:112px !important}.mb-11{margin-bottom:112px !important}.my-11{margin-top:112px !important;margin-bottom:112px !important}.mt-12{margin-top:128px !important}.mb-12{margin-bottom:128px !important}.my-12{margin-top:128px !important;margin-bottom:128px !important}@media (min-width: 544px){.mt-sm-7{margin-top:48px !important}.mb-sm-7{margin-bottom:48px !important}.my-sm-7{margin-top:48px !important;margin-bottom:48px !important}}@media (min-width: 544px){.mt-sm-8{margin-top:64px !important}.mb-sm-8{margin-bottom:64px !important}.my-sm-8{margin-top:64px !important;margin-bottom:64px !important}}@media (min-width: 544px){.mt-sm-9{margin-top:80px !important}.mb-sm-9{margin-bottom:80px !important}.my-sm-9{margin-top:80px !important;margin-bottom:80px !important}}@media (min-width: 544px){.mt-sm-10{margin-top:96px !important}.mb-sm-10{margin-bottom:96px !important}.my-sm-10{margin-top:96px !important;margin-bottom:96px !important}}@media (min-width: 544px){.mt-sm-11{margin-top:112px !important}.mb-sm-11{margin-bottom:112px !important}.my-sm-11{margin-top:112px !important;margin-bottom:112px !important}}@media (min-width: 544px){.mt-sm-12{margin-top:128px !important}.mb-sm-12{margin-bottom:128px !important}.my-sm-12{margin-top:128px !important;margin-bottom:128px !important}}@media (min-width: 768px){.mt-md-7{margin-top:48px !important}.mb-md-7{margin-bottom:48px !important}.my-md-7{margin-top:48px !important;margin-bottom:48px !important}}@media (min-width: 768px){.mt-md-8{margin-top:64px !important}.mb-md-8{margin-bottom:64px !important}.my-md-8{margin-top:64px !important;margin-bottom:64px !important}}@media (min-width: 768px){.mt-md-9{margin-top:80px !important}.mb-md-9{margin-bottom:80px !important}.my-md-9{margin-top:80px !important;margin-bottom:80px !important}}@media (min-width: 768px){.mt-md-10{margin-top:96px !important}.mb-md-10{margin-bottom:96px !important}.my-md-10{margin-top:96px !important;margin-bottom:96px !important}}@media (min-width: 768px){.mt-md-11{margin-top:112px !important}.mb-md-11{margin-bottom:112px !important}.my-md-11{margin-top:112px !important;margin-bottom:112px !important}}@media (min-width: 768px){.mt-md-12{margin-top:128px !important}.mb-md-12{margin-bottom:128px !important}.my-md-12{margin-top:128px !important;margin-bottom:128px !important}}@media (min-width: 1012px){.mt-lg-7{margin-top:48px !important}.mb-lg-7{margin-bottom:48px !important}.my-lg-7{margin-top:48px !important;margin-bottom:48px !important}}@media (min-width: 1012px){.mt-lg-8{margin-top:64px !important}.mb-lg-8{margin-bottom:64px !important}.my-lg-8{margin-top:64px !important;margin-bottom:64px !important}}@media (min-width: 1012px){.mt-lg-9{margin-top:80px !important}.mb-lg-9{margin-bottom:80px !important}.my-lg-9{margin-top:80px !important;margin-bottom:80px !important}}@media (min-width: 1012px){.mt-lg-10{margin-top:96px !important}.mb-lg-10{margin-bottom:96px !important}.my-lg-10{margin-top:96px !important;margin-bottom:96px !important}}@media (min-width: 1012px){.mt-lg-11{margin-top:112px !important}.mb-lg-11{margin-bottom:112px !important}.my-lg-11{margin-top:112px !important;margin-bottom:112px !important}}@media (min-width: 1012px){.mt-lg-12{margin-top:128px !important}.mb-lg-12{margin-bottom:128px !important}.my-lg-12{margin-top:128px !important;margin-bottom:128px !important}}@media (min-width: 1280px){.mt-xl-7{margin-top:48px !important}.mb-xl-7{margin-bottom:48px !important}.my-xl-7{margin-top:48px !important;margin-bottom:48px !important}}@media (min-width: 1280px){.mt-xl-8{margin-top:64px !important}.mb-xl-8{margin-bottom:64px !important}.my-xl-8{margin-top:64px !important;margin-bottom:64px !important}}@media (min-width: 1280px){.mt-xl-9{margin-top:80px !important}.mb-xl-9{margin-bottom:80px !important}.my-xl-9{margin-top:80px !important;margin-bottom:80px !important}}@media (min-width: 1280px){.mt-xl-10{margin-top:96px !important}.mb-xl-10{margin-bottom:96px !important}.my-xl-10{margin-top:96px !important;margin-bottom:96px !important}}@media (min-width: 1280px){.mt-xl-11{margin-top:112px !important}.mb-xl-11{margin-bottom:112px !important}.my-xl-11{margin-top:112px !important;margin-bottom:112px !important}}@media (min-width: 1280px){.mt-xl-12{margin-top:128px !important}.mb-xl-12{margin-bottom:128px !important}.my-xl-12{margin-top:128px !important;margin-bottom:128px !important}}.pt-7{padding-top:48px !important}.pb-7{padding-bottom:48px !important}.py-7{padding-top:48px !important;padding-bottom:48px !important}.pt-8{padding-top:64px !important}.pb-8{padding-bottom:64px !important}.py-8{padding-top:64px !important;padding-bottom:64px !important}.pt-9{padding-top:80px !important}.pb-9{padding-bottom:80px !important}.py-9{padding-top:80px !important;padding-bottom:80px !important}.pt-10{padding-top:96px !important}.pb-10{padding-bottom:96px !important}.py-10{padding-top:96px !important;padding-bottom:96px !important}.pt-11{padding-top:112px !important}.pb-11{padding-bottom:112px !important}.py-11{padding-top:112px !important;padding-bottom:112px !important}.pt-12{padding-top:128px !important}.pb-12{padding-bottom:128px !important}.py-12{padding-top:128px !important;padding-bottom:128px !important}@media (min-width: 544px){.pt-sm-7{padding-top:48px !important}.pb-sm-7{padding-bottom:48px !important}.py-sm-7{padding-top:48px !important;padding-bottom:48px !important}}@media (min-width: 544px){.pt-sm-8{padding-top:64px !important}.pb-sm-8{padding-bottom:64px !important}.py-sm-8{padding-top:64px !important;padding-bottom:64px !important}}@media (min-width: 544px){.pt-sm-9{padding-top:80px !important}.pb-sm-9{padding-bottom:80px !important}.py-sm-9{padding-top:80px !important;padding-bottom:80px !important}}@media (min-width: 544px){.pt-sm-10{padding-top:96px !important}.pb-sm-10{padding-bottom:96px !important}.py-sm-10{padding-top:96px !important;padding-bottom:96px !important}}@media (min-width: 544px){.pt-sm-11{padding-top:112px !important}.pb-sm-11{padding-bottom:112px !important}.py-sm-11{padding-top:112px !important;padding-bottom:112px !important}}@media (min-width: 544px){.pt-sm-12{padding-top:128px !important}.pb-sm-12{padding-bottom:128px !important}.py-sm-12{padding-top:128px !important;padding-bottom:128px !important}}@media (min-width: 768px){.pt-md-7{padding-top:48px !important}.pb-md-7{padding-bottom:48px !important}.py-md-7{padding-top:48px !important;padding-bottom:48px !important}}@media (min-width: 768px){.pt-md-8{padding-top:64px !important}.pb-md-8{padding-bottom:64px !important}.py-md-8{padding-top:64px !important;padding-bottom:64px !important}}@media (min-width: 768px){.pt-md-9{padding-top:80px !important}.pb-md-9{padding-bottom:80px !important}.py-md-9{padding-top:80px !important;padding-bottom:80px !important}}@media (min-width: 768px){.pt-md-10{padding-top:96px !important}.pb-md-10{padding-bottom:96px !important}.py-md-10{padding-top:96px !important;padding-bottom:96px !important}}@media (min-width: 768px){.pt-md-11{padding-top:112px !important}.pb-md-11{padding-bottom:112px !important}.py-md-11{padding-top:112px !important;padding-bottom:112px !important}}@media (min-width: 768px){.pt-md-12{padding-top:128px !important}.pb-md-12{padding-bottom:128px !important}.py-md-12{padding-top:128px !important;padding-bottom:128px !important}}@media (min-width: 1012px){.pt-lg-7{padding-top:48px !important}.pb-lg-7{padding-bottom:48px !important}.py-lg-7{padding-top:48px !important;padding-bottom:48px !important}}@media (min-width: 1012px){.pt-lg-8{padding-top:64px !important}.pb-lg-8{padding-bottom:64px !important}.py-lg-8{padding-top:64px !important;padding-bottom:64px !important}}@media (min-width: 1012px){.pt-lg-9{padding-top:80px !important}.pb-lg-9{padding-bottom:80px !important}.py-lg-9{padding-top:80px !important;padding-bottom:80px !important}}@media (min-width: 1012px){.pt-lg-10{padding-top:96px !important}.pb-lg-10{padding-bottom:96px !important}.py-lg-10{padding-top:96px !important;padding-bottom:96px !important}}@media (min-width: 1012px){.pt-lg-11{padding-top:112px !important}.pb-lg-11{padding-bottom:112px !important}.py-lg-11{padding-top:112px !important;padding-bottom:112px !important}}@media (min-width: 1012px){.pt-lg-12{padding-top:128px !important}.pb-lg-12{padding-bottom:128px !important}.py-lg-12{padding-top:128px !important;padding-bottom:128px !important}}@media (min-width: 1280px){.pt-xl-7{padding-top:48px !important}.pb-xl-7{padding-bottom:48px !important}.py-xl-7{padding-top:48px !important;padding-bottom:48px !important}}@media (min-width: 1280px){.pt-xl-8{padding-top:64px !important}.pb-xl-8{padding-bottom:64px !important}.py-xl-8{padding-top:64px !important;padding-bottom:64px !important}}@media (min-width: 1280px){.pt-xl-9{padding-top:80px !important}.pb-xl-9{padding-bottom:80px !important}.py-xl-9{padding-top:80px !important;padding-bottom:80px !important}}@media (min-width: 1280px){.pt-xl-10{padding-top:96px !important}.pb-xl-10{padding-bottom:96px !important}.py-xl-10{padding-top:96px !important;padding-bottom:96px !important}}@media (min-width: 1280px){.pt-xl-11{padding-top:112px !important}.pb-xl-11{padding-bottom:112px !important}.py-xl-11{padding-top:112px !important;padding-bottom:112px !important}}@media (min-width: 1280px){.pt-xl-12{padding-top:128px !important}.pb-xl-12{padding-bottom:128px !important}.py-xl-12{padding-top:128px !important;padding-bottom:128px !important}}
+1
node_modules/primer-marketing-utilities/build/data.json
··· 1 + {"cssstats":{"size":10761,"gzipSize":1070,"humanizedSize":"11kB","humanizedGzipSize":"1kB","rules":{"total":194,"size":{"graph":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2],"max":2,"average":1.309278350515464},"selectorByRuleSizes":[{"selector":".py-xl-12","declarations":2},{"selector":".py-xl-11","declarations":2},{"selector":".py-xl-10","declarations":2},{"selector":".py-xl-9","declarations":2},{"selector":".py-xl-8","declarations":2},{"selector":".py-xl-7","declarations":2},{"selector":".py-lg-12","declarations":2},{"selector":".py-lg-11","declarations":2},{"selector":".py-lg-10","declarations":2},{"selector":".py-lg-9","declarations":2},{"selector":".py-lg-8","declarations":2},{"selector":".py-lg-7","declarations":2},{"selector":".py-md-12","declarations":2},{"selector":".py-md-11","declarations":2},{"selector":".py-md-10","declarations":2},{"selector":".py-md-9","declarations":2},{"selector":".py-md-8","declarations":2},{"selector":".py-md-7","declarations":2},{"selector":".py-sm-12","declarations":2},{"selector":".py-sm-11","declarations":2},{"selector":".py-sm-10","declarations":2},{"selector":".py-sm-9","declarations":2},{"selector":".py-sm-8","declarations":2},{"selector":".py-sm-7","declarations":2},{"selector":".py-12","declarations":2},{"selector":".py-11","declarations":2},{"selector":".py-10","declarations":2},{"selector":".py-9","declarations":2},{"selector":".py-8","declarations":2},{"selector":".py-7","declarations":2},{"selector":".my-xl-12","declarations":2},{"selector":".my-xl-11","declarations":2},{"selector":".my-xl-10","declarations":2},{"selector":".my-xl-9","declarations":2},{"selector":".my-xl-8","declarations":2},{"selector":".my-xl-7","declarations":2},{"selector":".my-lg-12","declarations":2},{"selector":".my-lg-11","declarations":2},{"selector":".my-lg-10","declarations":2},{"selector":".my-lg-9","declarations":2},{"selector":".my-lg-8","declarations":2},{"selector":".my-lg-7","declarations":2},{"selector":".my-md-12","declarations":2},{"selector":".my-md-11","declarations":2},{"selector":".my-md-10","declarations":2},{"selector":".my-md-9","declarations":2},{"selector":".my-md-8","declarations":2},{"selector":".my-md-7","declarations":2},{"selector":".my-sm-12","declarations":2},{"selector":".my-sm-11","declarations":2},{"selector":".my-sm-10","declarations":2},{"selector":".my-sm-9","declarations":2},{"selector":".my-sm-8","declarations":2},{"selector":".my-sm-7","declarations":2},{"selector":".my-12","declarations":2},{"selector":".my-11","declarations":2},{"selector":".my-10","declarations":2},{"selector":".my-9","declarations":2},{"selector":".my-8","declarations":2},{"selector":".my-7","declarations":2},{"selector":".pb-xl-12","declarations":1},{"selector":".pt-xl-12","declarations":1},{"selector":".pb-xl-11","declarations":1},{"selector":".pt-xl-11","declarations":1},{"selector":".pb-xl-10","declarations":1},{"selector":".pt-xl-10","declarations":1},{"selector":".pb-xl-9","declarations":1},{"selector":".pt-xl-9","declarations":1},{"selector":".pb-xl-8","declarations":1},{"selector":".pt-xl-8","declarations":1},{"selector":".pb-xl-7","declarations":1},{"selector":".pt-xl-7","declarations":1},{"selector":".pb-lg-12","declarations":1},{"selector":".pt-lg-12","declarations":1},{"selector":".pb-lg-11","declarations":1},{"selector":".pt-lg-11","declarations":1},{"selector":".pb-lg-10","declarations":1},{"selector":".pt-lg-10","declarations":1},{"selector":".pb-lg-9","declarations":1},{"selector":".pt-lg-9","declarations":1},{"selector":".pb-lg-8","declarations":1},{"selector":".pt-lg-8","declarations":1},{"selector":".pb-lg-7","declarations":1},{"selector":".pt-lg-7","declarations":1},{"selector":".pb-md-12","declarations":1},{"selector":".pt-md-12","declarations":1},{"selector":".pb-md-11","declarations":1},{"selector":".pt-md-11","declarations":1},{"selector":".pb-md-10","declarations":1},{"selector":".pt-md-10","declarations":1},{"selector":".pb-md-9","declarations":1},{"selector":".pt-md-9","declarations":1},{"selector":".pb-md-8","declarations":1},{"selector":".pt-md-8","declarations":1},{"selector":".pb-md-7","declarations":1},{"selector":".pt-md-7","declarations":1},{"selector":".pb-sm-12","declarations":1},{"selector":".pt-sm-12","declarations":1},{"selector":".pb-sm-11","declarations":1},{"selector":".pt-sm-11","declarations":1},{"selector":".pb-sm-10","declarations":1},{"selector":".pt-sm-10","declarations":1},{"selector":".pb-sm-9","declarations":1},{"selector":".pt-sm-9","declarations":1},{"selector":".pb-sm-8","declarations":1},{"selector":".pt-sm-8","declarations":1},{"selector":".pb-sm-7","declarations":1},{"selector":".pt-sm-7","declarations":1},{"selector":".pb-12","declarations":1},{"selector":".pt-12","declarations":1},{"selector":".pb-11","declarations":1},{"selector":".pt-11","declarations":1},{"selector":".pb-10","declarations":1},{"selector":".pt-10","declarations":1},{"selector":".pb-9","declarations":1},{"selector":".pt-9","declarations":1},{"selector":".pb-8","declarations":1},{"selector":".pt-8","declarations":1},{"selector":".pb-7","declarations":1},{"selector":".pt-7","declarations":1},{"selector":".mb-xl-12","declarations":1},{"selector":".mt-xl-12","declarations":1},{"selector":".mb-xl-11","declarations":1},{"selector":".mt-xl-11","declarations":1},{"selector":".mb-xl-10","declarations":1},{"selector":".mt-xl-10","declarations":1},{"selector":".mb-xl-9","declarations":1},{"selector":".mt-xl-9","declarations":1},{"selector":".mb-xl-8","declarations":1},{"selector":".mt-xl-8","declarations":1},{"selector":".mb-xl-7","declarations":1},{"selector":".mt-xl-7","declarations":1},{"selector":".mb-lg-12","declarations":1},{"selector":".mt-lg-12","declarations":1},{"selector":".mb-lg-11","declarations":1},{"selector":".mt-lg-11","declarations":1},{"selector":".mb-lg-10","declarations":1},{"selector":".mt-lg-10","declarations":1},{"selector":".mb-lg-9","declarations":1},{"selector":".mt-lg-9","declarations":1},{"selector":".mb-lg-8","declarations":1},{"selector":".mt-lg-8","declarations":1},{"selector":".mb-lg-7","declarations":1},{"selector":".mt-lg-7","declarations":1},{"selector":".mb-md-12","declarations":1},{"selector":".mt-md-12","declarations":1},{"selector":".mb-md-11","declarations":1},{"selector":".mt-md-11","declarations":1},{"selector":".mb-md-10","declarations":1},{"selector":".mt-md-10","declarations":1},{"selector":".mb-md-9","declarations":1},{"selector":".mt-md-9","declarations":1},{"selector":".mb-md-8","declarations":1},{"selector":".mt-md-8","declarations":1},{"selector":".mb-md-7","declarations":1},{"selector":".mt-md-7","declarations":1},{"selector":".mb-sm-12","declarations":1},{"selector":".mt-sm-12","declarations":1},{"selector":".mb-sm-11","declarations":1},{"selector":".mt-sm-11","declarations":1},{"selector":".mb-sm-10","declarations":1},{"selector":".mt-sm-10","declarations":1},{"selector":".mb-sm-9","declarations":1},{"selector":".mt-sm-9","declarations":1},{"selector":".mb-sm-8","declarations":1},{"selector":".mt-sm-8","declarations":1},{"selector":".mb-sm-7","declarations":1},{"selector":".mt-sm-7","declarations":1},{"selector":".mb-12","declarations":1},{"selector":".mt-12","declarations":1},{"selector":".mb-11","declarations":1},{"selector":".mt-11","declarations":1},{"selector":".mb-10","declarations":1},{"selector":".mt-10","declarations":1},{"selector":".mb-9","declarations":1},{"selector":".mt-9","declarations":1},{"selector":".mb-8","declarations":1},{"selector":".mt-8","declarations":1},{"selector":".mb-7","declarations":1},{"selector":".mt-7","declarations":1},{"selector":".position-xl-fixed","declarations":1},{"selector":".position-xl-absolute","declarations":1},{"selector":".position-xl-relative","declarations":1},{"selector":".position-lg-fixed","declarations":1},{"selector":".position-lg-absolute","declarations":1},{"selector":".position-lg-relative","declarations":1},{"selector":".position-md-fixed","declarations":1},{"selector":".position-md-absolute","declarations":1},{"selector":".position-md-relative","declarations":1},{"selector":".position-sm-fixed","declarations":1},{"selector":".position-sm-absolute","declarations":1},{"selector":".position-sm-relative","declarations":1},{"selector":".border-white-fade","declarations":1},{"selector":".grayscale","declarations":1}]},"selectors":{"total":194,"type":0,"class":194,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".grayscale",".border-white-fade",".position-sm-relative",".position-sm-absolute",".position-sm-fixed",".position-md-relative",".position-md-absolute",".position-md-fixed",".position-lg-relative",".position-lg-absolute",".position-lg-fixed",".position-xl-relative",".position-xl-absolute",".position-xl-fixed",".mt-7",".mb-7",".my-7",".mt-8",".mb-8",".my-8",".mt-9",".mb-9",".my-9",".mt-10",".mb-10",".my-10",".mt-11",".mb-11",".my-11",".mt-12",".mb-12",".my-12",".mt-sm-7",".mb-sm-7",".my-sm-7",".mt-sm-8",".mb-sm-8",".my-sm-8",".mt-sm-9",".mb-sm-9",".my-sm-9",".mt-sm-10",".mb-sm-10",".my-sm-10",".mt-sm-11",".mb-sm-11",".my-sm-11",".mt-sm-12",".mb-sm-12",".my-sm-12",".mt-md-7",".mb-md-7",".my-md-7",".mt-md-8",".mb-md-8",".my-md-8",".mt-md-9",".mb-md-9",".my-md-9",".mt-md-10",".mb-md-10",".my-md-10",".mt-md-11",".mb-md-11",".my-md-11",".mt-md-12",".mb-md-12",".my-md-12",".mt-lg-7",".mb-lg-7",".my-lg-7",".mt-lg-8",".mb-lg-8",".my-lg-8",".mt-lg-9",".mb-lg-9",".my-lg-9",".mt-lg-10",".mb-lg-10",".my-lg-10",".mt-lg-11",".mb-lg-11",".my-lg-11",".mt-lg-12",".mb-lg-12",".my-lg-12",".mt-xl-7",".mb-xl-7",".my-xl-7",".mt-xl-8",".mb-xl-8",".my-xl-8",".mt-xl-9",".mb-xl-9",".my-xl-9",".mt-xl-10",".mb-xl-10",".my-xl-10",".mt-xl-11",".mb-xl-11",".my-xl-11",".mt-xl-12",".mb-xl-12",".my-xl-12",".pt-7",".pb-7",".py-7",".pt-8",".pb-8",".py-8",".pt-9",".pb-9",".py-9",".pt-10",".pb-10",".py-10",".pt-11",".pb-11",".py-11",".pt-12",".pb-12",".py-12",".pt-sm-7",".pb-sm-7",".py-sm-7",".pt-sm-8",".pb-sm-8",".py-sm-8",".pt-sm-9",".pb-sm-9",".py-sm-9",".pt-sm-10",".pb-sm-10",".py-sm-10",".pt-sm-11",".pb-sm-11",".py-sm-11",".pt-sm-12",".pb-sm-12",".py-sm-12",".pt-md-7",".pb-md-7",".py-md-7",".pt-md-8",".pb-md-8",".py-md-8",".pt-md-9",".pb-md-9",".py-md-9",".pt-md-10",".pb-md-10",".py-md-10",".pt-md-11",".pb-md-11",".py-md-11",".pt-md-12",".pb-md-12",".py-md-12",".pt-lg-7",".pb-lg-7",".py-lg-7",".pt-lg-8",".pb-lg-8",".py-lg-8",".pt-lg-9",".pb-lg-9",".py-lg-9",".pt-lg-10",".pb-lg-10",".py-lg-10",".pt-lg-11",".pb-lg-11",".py-lg-11",".pt-lg-12",".pb-lg-12",".py-lg-12",".pt-xl-7",".pb-xl-7",".py-xl-7",".pt-xl-8",".pb-xl-8",".py-xl-8",".pt-xl-9",".pb-xl-9",".py-xl-9",".pt-xl-10",".pb-xl-10",".py-xl-10",".pt-xl-11",".pb-xl-11",".py-xl-11",".pt-xl-12",".pb-xl-12",".py-xl-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":254,"unique":29,"properties":{"filter":["grayscale(100%)"],"border-color":["rgba(255,255,255,0.15)"],"position":["relative","absolute","fixed","relative","absolute","fixed","relative","absolute","fixed","relative","absolute","fixed"],"margin-top":["48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px"],"margin-bottom":["48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px"],"padding-top":["48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px"],"padding-bottom":["48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px"]}},"mediaQueries":{"total":52,"unique":4,"values":["(min-width: 544px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 1280px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)"],"contents":[{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":",.position-sm-fixed","declarations":1},{"selector":",.position-sm-absolute","declarations":1},{"selector":".position-sm-relative","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".position-sm-relative",".position-sm-absolute",".position-sm-fixed"],"specificity":{"max":10,"average":10}},"declarations":{"total":3,"unique":3,"properties":{"position":["relative","absolute","fixed"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":",.position-md-fixed","declarations":1},{"selector":",.position-md-absolute","declarations":1},{"selector":".position-md-relative","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".position-md-relative",".position-md-absolute",".position-md-fixed"],"specificity":{"max":10,"average":10}},"declarations":{"total":3,"unique":3,"properties":{"position":["relative","absolute","fixed"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":",.position-lg-fixed","declarations":1},{"selector":",.position-lg-absolute","declarations":1},{"selector":".position-lg-relative","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".position-lg-relative",".position-lg-absolute",".position-lg-fixed"],"specificity":{"max":10,"average":10}},"declarations":{"total":3,"unique":3,"properties":{"position":["relative","absolute","fixed"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":",.position-xl-fixed","declarations":1},{"selector":",.position-xl-absolute","declarations":1},{"selector":".position-xl-relative","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".position-xl-relative",".position-xl-absolute",".position-xl-fixed"],"specificity":{"max":10,"average":10}},"declarations":{"total":3,"unique":3,"properties":{"position":["relative","absolute","fixed"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-sm-7","declarations":2},{"selector":",.mb-sm-7","declarations":1},{"selector":".mt-sm-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-sm-7",".mb-sm-7",".my-sm-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["48px","48px"],"margin-bottom":["48px","48px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-sm-8","declarations":2},{"selector":",.mb-sm-8","declarations":1},{"selector":".mt-sm-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-sm-8",".mb-sm-8",".my-sm-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["64px","64px"],"margin-bottom":["64px","64px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-sm-9","declarations":2},{"selector":",.mb-sm-9","declarations":1},{"selector":".mt-sm-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-sm-9",".mb-sm-9",".my-sm-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["80px","80px"],"margin-bottom":["80px","80px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-sm-10","declarations":2},{"selector":",.mb-sm-10","declarations":1},{"selector":".mt-sm-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-sm-10",".mb-sm-10",".my-sm-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["96px","96px"],"margin-bottom":["96px","96px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-sm-11","declarations":2},{"selector":",.mb-sm-11","declarations":1},{"selector":".mt-sm-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-sm-11",".mb-sm-11",".my-sm-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["112px","112px"],"margin-bottom":["112px","112px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-sm-12","declarations":2},{"selector":",.mb-sm-12","declarations":1},{"selector":".mt-sm-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-sm-12",".mb-sm-12",".my-sm-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["128px","128px"],"margin-bottom":["128px","128px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-md-7","declarations":2},{"selector":",.mb-md-7","declarations":1},{"selector":".mt-md-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-md-7",".mb-md-7",".my-md-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["48px","48px"],"margin-bottom":["48px","48px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-md-8","declarations":2},{"selector":",.mb-md-8","declarations":1},{"selector":".mt-md-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-md-8",".mb-md-8",".my-md-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["64px","64px"],"margin-bottom":["64px","64px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-md-9","declarations":2},{"selector":",.mb-md-9","declarations":1},{"selector":".mt-md-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-md-9",".mb-md-9",".my-md-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["80px","80px"],"margin-bottom":["80px","80px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-md-10","declarations":2},{"selector":",.mb-md-10","declarations":1},{"selector":".mt-md-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-md-10",".mb-md-10",".my-md-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["96px","96px"],"margin-bottom":["96px","96px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-md-11","declarations":2},{"selector":",.mb-md-11","declarations":1},{"selector":".mt-md-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-md-11",".mb-md-11",".my-md-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["112px","112px"],"margin-bottom":["112px","112px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-md-12","declarations":2},{"selector":",.mb-md-12","declarations":1},{"selector":".mt-md-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-md-12",".mb-md-12",".my-md-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["128px","128px"],"margin-bottom":["128px","128px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-lg-7","declarations":2},{"selector":",.mb-lg-7","declarations":1},{"selector":".mt-lg-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-lg-7",".mb-lg-7",".my-lg-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["48px","48px"],"margin-bottom":["48px","48px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-lg-8","declarations":2},{"selector":",.mb-lg-8","declarations":1},{"selector":".mt-lg-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-lg-8",".mb-lg-8",".my-lg-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["64px","64px"],"margin-bottom":["64px","64px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-lg-9","declarations":2},{"selector":",.mb-lg-9","declarations":1},{"selector":".mt-lg-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-lg-9",".mb-lg-9",".my-lg-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["80px","80px"],"margin-bottom":["80px","80px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-lg-10","declarations":2},{"selector":",.mb-lg-10","declarations":1},{"selector":".mt-lg-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-lg-10",".mb-lg-10",".my-lg-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["96px","96px"],"margin-bottom":["96px","96px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-lg-11","declarations":2},{"selector":",.mb-lg-11","declarations":1},{"selector":".mt-lg-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-lg-11",".mb-lg-11",".my-lg-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["112px","112px"],"margin-bottom":["112px","112px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-lg-12","declarations":2},{"selector":",.mb-lg-12","declarations":1},{"selector":".mt-lg-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-lg-12",".mb-lg-12",".my-lg-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["128px","128px"],"margin-bottom":["128px","128px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-xl-7","declarations":2},{"selector":",.mb-xl-7","declarations":1},{"selector":".mt-xl-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-xl-7",".mb-xl-7",".my-xl-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["48px","48px"],"margin-bottom":["48px","48px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-xl-8","declarations":2},{"selector":",.mb-xl-8","declarations":1},{"selector":".mt-xl-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-xl-8",".mb-xl-8",".my-xl-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["64px","64px"],"margin-bottom":["64px","64px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-xl-9","declarations":2},{"selector":",.mb-xl-9","declarations":1},{"selector":".mt-xl-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-xl-9",".mb-xl-9",".my-xl-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["80px","80px"],"margin-bottom":["80px","80px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-xl-10","declarations":2},{"selector":",.mb-xl-10","declarations":1},{"selector":".mt-xl-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-xl-10",".mb-xl-10",".my-xl-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["96px","96px"],"margin-bottom":["96px","96px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-xl-11","declarations":2},{"selector":",.mb-xl-11","declarations":1},{"selector":".mt-xl-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-xl-11",".mb-xl-11",".my-xl-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["112px","112px"],"margin-bottom":["112px","112px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-xl-12","declarations":2},{"selector":",.mb-xl-12","declarations":1},{"selector":".mt-xl-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-xl-12",".mb-xl-12",".my-xl-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["128px","128px"],"margin-bottom":["128px","128px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-sm-7","declarations":2},{"selector":",.pb-sm-7","declarations":1},{"selector":".pt-sm-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-sm-7",".pb-sm-7",".py-sm-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["48px","48px"],"padding-bottom":["48px","48px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-sm-8","declarations":2},{"selector":",.pb-sm-8","declarations":1},{"selector":".pt-sm-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-sm-8",".pb-sm-8",".py-sm-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["64px","64px"],"padding-bottom":["64px","64px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-sm-9","declarations":2},{"selector":",.pb-sm-9","declarations":1},{"selector":".pt-sm-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-sm-9",".pb-sm-9",".py-sm-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["80px","80px"],"padding-bottom":["80px","80px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-sm-10","declarations":2},{"selector":",.pb-sm-10","declarations":1},{"selector":".pt-sm-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-sm-10",".pb-sm-10",".py-sm-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["96px","96px"],"padding-bottom":["96px","96px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-sm-11","declarations":2},{"selector":",.pb-sm-11","declarations":1},{"selector":".pt-sm-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-sm-11",".pb-sm-11",".py-sm-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["112px","112px"],"padding-bottom":["112px","112px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-sm-12","declarations":2},{"selector":",.pb-sm-12","declarations":1},{"selector":".pt-sm-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-sm-12",".pb-sm-12",".py-sm-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["128px","128px"],"padding-bottom":["128px","128px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-md-7","declarations":2},{"selector":",.pb-md-7","declarations":1},{"selector":".pt-md-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-md-7",".pb-md-7",".py-md-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["48px","48px"],"padding-bottom":["48px","48px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-md-8","declarations":2},{"selector":",.pb-md-8","declarations":1},{"selector":".pt-md-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-md-8",".pb-md-8",".py-md-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["64px","64px"],"padding-bottom":["64px","64px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-md-9","declarations":2},{"selector":",.pb-md-9","declarations":1},{"selector":".pt-md-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-md-9",".pb-md-9",".py-md-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["80px","80px"],"padding-bottom":["80px","80px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-md-10","declarations":2},{"selector":",.pb-md-10","declarations":1},{"selector":".pt-md-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-md-10",".pb-md-10",".py-md-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["96px","96px"],"padding-bottom":["96px","96px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-md-11","declarations":2},{"selector":",.pb-md-11","declarations":1},{"selector":".pt-md-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-md-11",".pb-md-11",".py-md-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["112px","112px"],"padding-bottom":["112px","112px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-md-12","declarations":2},{"selector":",.pb-md-12","declarations":1},{"selector":".pt-md-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-md-12",".pb-md-12",".py-md-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["128px","128px"],"padding-bottom":["128px","128px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-lg-7","declarations":2},{"selector":",.pb-lg-7","declarations":1},{"selector":".pt-lg-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-lg-7",".pb-lg-7",".py-lg-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["48px","48px"],"padding-bottom":["48px","48px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-lg-8","declarations":2},{"selector":",.pb-lg-8","declarations":1},{"selector":".pt-lg-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-lg-8",".pb-lg-8",".py-lg-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["64px","64px"],"padding-bottom":["64px","64px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-lg-9","declarations":2},{"selector":",.pb-lg-9","declarations":1},{"selector":".pt-lg-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-lg-9",".pb-lg-9",".py-lg-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["80px","80px"],"padding-bottom":["80px","80px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-lg-10","declarations":2},{"selector":",.pb-lg-10","declarations":1},{"selector":".pt-lg-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-lg-10",".pb-lg-10",".py-lg-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["96px","96px"],"padding-bottom":["96px","96px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-lg-11","declarations":2},{"selector":",.pb-lg-11","declarations":1},{"selector":".pt-lg-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-lg-11",".pb-lg-11",".py-lg-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["112px","112px"],"padding-bottom":["112px","112px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-lg-12","declarations":2},{"selector":",.pb-lg-12","declarations":1},{"selector":".pt-lg-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-lg-12",".pb-lg-12",".py-lg-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["128px","128px"],"padding-bottom":["128px","128px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-xl-7","declarations":2},{"selector":",.pb-xl-7","declarations":1},{"selector":".pt-xl-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-xl-7",".pb-xl-7",".py-xl-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["48px","48px"],"padding-bottom":["48px","48px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-xl-8","declarations":2},{"selector":",.pb-xl-8","declarations":1},{"selector":".pt-xl-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-xl-8",".pb-xl-8",".py-xl-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["64px","64px"],"padding-bottom":["64px","64px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-xl-9","declarations":2},{"selector":",.pb-xl-9","declarations":1},{"selector":".pt-xl-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-xl-9",".pb-xl-9",".py-xl-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["80px","80px"],"padding-bottom":["80px","80px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-xl-10","declarations":2},{"selector":",.pb-xl-10","declarations":1},{"selector":".pt-xl-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-xl-10",".pb-xl-10",".py-xl-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["96px","96px"],"padding-bottom":["96px","96px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-xl-11","declarations":2},{"selector":",.pb-xl-11","declarations":1},{"selector":".pt-xl-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-xl-11",".pb-xl-11",".py-xl-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["112px","112px"],"padding-bottom":["112px","112px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-xl-12","declarations":2},{"selector":",.pb-xl-12","declarations":1},{"selector":".pt-xl-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-xl-12",".pb-xl-12",".py-xl-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["128px","128px"],"padding-bottom":["128px","128px"]}}}]}}}
+1
node_modules/primer-marketing-utilities/build/index.js
··· 1 + module.exports = {"cssstats":{"size":10761,"gzipSize":1070,"humanizedSize":"11kB","humanizedGzipSize":"1kB","rules":{"total":194,"size":{"graph":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2],"max":2,"average":1.309278350515464},"selectorByRuleSizes":[{"selector":".py-xl-12","declarations":2},{"selector":".py-xl-11","declarations":2},{"selector":".py-xl-10","declarations":2},{"selector":".py-xl-9","declarations":2},{"selector":".py-xl-8","declarations":2},{"selector":".py-xl-7","declarations":2},{"selector":".py-lg-12","declarations":2},{"selector":".py-lg-11","declarations":2},{"selector":".py-lg-10","declarations":2},{"selector":".py-lg-9","declarations":2},{"selector":".py-lg-8","declarations":2},{"selector":".py-lg-7","declarations":2},{"selector":".py-md-12","declarations":2},{"selector":".py-md-11","declarations":2},{"selector":".py-md-10","declarations":2},{"selector":".py-md-9","declarations":2},{"selector":".py-md-8","declarations":2},{"selector":".py-md-7","declarations":2},{"selector":".py-sm-12","declarations":2},{"selector":".py-sm-11","declarations":2},{"selector":".py-sm-10","declarations":2},{"selector":".py-sm-9","declarations":2},{"selector":".py-sm-8","declarations":2},{"selector":".py-sm-7","declarations":2},{"selector":".py-12","declarations":2},{"selector":".py-11","declarations":2},{"selector":".py-10","declarations":2},{"selector":".py-9","declarations":2},{"selector":".py-8","declarations":2},{"selector":".py-7","declarations":2},{"selector":".my-xl-12","declarations":2},{"selector":".my-xl-11","declarations":2},{"selector":".my-xl-10","declarations":2},{"selector":".my-xl-9","declarations":2},{"selector":".my-xl-8","declarations":2},{"selector":".my-xl-7","declarations":2},{"selector":".my-lg-12","declarations":2},{"selector":".my-lg-11","declarations":2},{"selector":".my-lg-10","declarations":2},{"selector":".my-lg-9","declarations":2},{"selector":".my-lg-8","declarations":2},{"selector":".my-lg-7","declarations":2},{"selector":".my-md-12","declarations":2},{"selector":".my-md-11","declarations":2},{"selector":".my-md-10","declarations":2},{"selector":".my-md-9","declarations":2},{"selector":".my-md-8","declarations":2},{"selector":".my-md-7","declarations":2},{"selector":".my-sm-12","declarations":2},{"selector":".my-sm-11","declarations":2},{"selector":".my-sm-10","declarations":2},{"selector":".my-sm-9","declarations":2},{"selector":".my-sm-8","declarations":2},{"selector":".my-sm-7","declarations":2},{"selector":".my-12","declarations":2},{"selector":".my-11","declarations":2},{"selector":".my-10","declarations":2},{"selector":".my-9","declarations":2},{"selector":".my-8","declarations":2},{"selector":".my-7","declarations":2},{"selector":".pb-xl-12","declarations":1},{"selector":".pt-xl-12","declarations":1},{"selector":".pb-xl-11","declarations":1},{"selector":".pt-xl-11","declarations":1},{"selector":".pb-xl-10","declarations":1},{"selector":".pt-xl-10","declarations":1},{"selector":".pb-xl-9","declarations":1},{"selector":".pt-xl-9","declarations":1},{"selector":".pb-xl-8","declarations":1},{"selector":".pt-xl-8","declarations":1},{"selector":".pb-xl-7","declarations":1},{"selector":".pt-xl-7","declarations":1},{"selector":".pb-lg-12","declarations":1},{"selector":".pt-lg-12","declarations":1},{"selector":".pb-lg-11","declarations":1},{"selector":".pt-lg-11","declarations":1},{"selector":".pb-lg-10","declarations":1},{"selector":".pt-lg-10","declarations":1},{"selector":".pb-lg-9","declarations":1},{"selector":".pt-lg-9","declarations":1},{"selector":".pb-lg-8","declarations":1},{"selector":".pt-lg-8","declarations":1},{"selector":".pb-lg-7","declarations":1},{"selector":".pt-lg-7","declarations":1},{"selector":".pb-md-12","declarations":1},{"selector":".pt-md-12","declarations":1},{"selector":".pb-md-11","declarations":1},{"selector":".pt-md-11","declarations":1},{"selector":".pb-md-10","declarations":1},{"selector":".pt-md-10","declarations":1},{"selector":".pb-md-9","declarations":1},{"selector":".pt-md-9","declarations":1},{"selector":".pb-md-8","declarations":1},{"selector":".pt-md-8","declarations":1},{"selector":".pb-md-7","declarations":1},{"selector":".pt-md-7","declarations":1},{"selector":".pb-sm-12","declarations":1},{"selector":".pt-sm-12","declarations":1},{"selector":".pb-sm-11","declarations":1},{"selector":".pt-sm-11","declarations":1},{"selector":".pb-sm-10","declarations":1},{"selector":".pt-sm-10","declarations":1},{"selector":".pb-sm-9","declarations":1},{"selector":".pt-sm-9","declarations":1},{"selector":".pb-sm-8","declarations":1},{"selector":".pt-sm-8","declarations":1},{"selector":".pb-sm-7","declarations":1},{"selector":".pt-sm-7","declarations":1},{"selector":".pb-12","declarations":1},{"selector":".pt-12","declarations":1},{"selector":".pb-11","declarations":1},{"selector":".pt-11","declarations":1},{"selector":".pb-10","declarations":1},{"selector":".pt-10","declarations":1},{"selector":".pb-9","declarations":1},{"selector":".pt-9","declarations":1},{"selector":".pb-8","declarations":1},{"selector":".pt-8","declarations":1},{"selector":".pb-7","declarations":1},{"selector":".pt-7","declarations":1},{"selector":".mb-xl-12","declarations":1},{"selector":".mt-xl-12","declarations":1},{"selector":".mb-xl-11","declarations":1},{"selector":".mt-xl-11","declarations":1},{"selector":".mb-xl-10","declarations":1},{"selector":".mt-xl-10","declarations":1},{"selector":".mb-xl-9","declarations":1},{"selector":".mt-xl-9","declarations":1},{"selector":".mb-xl-8","declarations":1},{"selector":".mt-xl-8","declarations":1},{"selector":".mb-xl-7","declarations":1},{"selector":".mt-xl-7","declarations":1},{"selector":".mb-lg-12","declarations":1},{"selector":".mt-lg-12","declarations":1},{"selector":".mb-lg-11","declarations":1},{"selector":".mt-lg-11","declarations":1},{"selector":".mb-lg-10","declarations":1},{"selector":".mt-lg-10","declarations":1},{"selector":".mb-lg-9","declarations":1},{"selector":".mt-lg-9","declarations":1},{"selector":".mb-lg-8","declarations":1},{"selector":".mt-lg-8","declarations":1},{"selector":".mb-lg-7","declarations":1},{"selector":".mt-lg-7","declarations":1},{"selector":".mb-md-12","declarations":1},{"selector":".mt-md-12","declarations":1},{"selector":".mb-md-11","declarations":1},{"selector":".mt-md-11","declarations":1},{"selector":".mb-md-10","declarations":1},{"selector":".mt-md-10","declarations":1},{"selector":".mb-md-9","declarations":1},{"selector":".mt-md-9","declarations":1},{"selector":".mb-md-8","declarations":1},{"selector":".mt-md-8","declarations":1},{"selector":".mb-md-7","declarations":1},{"selector":".mt-md-7","declarations":1},{"selector":".mb-sm-12","declarations":1},{"selector":".mt-sm-12","declarations":1},{"selector":".mb-sm-11","declarations":1},{"selector":".mt-sm-11","declarations":1},{"selector":".mb-sm-10","declarations":1},{"selector":".mt-sm-10","declarations":1},{"selector":".mb-sm-9","declarations":1},{"selector":".mt-sm-9","declarations":1},{"selector":".mb-sm-8","declarations":1},{"selector":".mt-sm-8","declarations":1},{"selector":".mb-sm-7","declarations":1},{"selector":".mt-sm-7","declarations":1},{"selector":".mb-12","declarations":1},{"selector":".mt-12","declarations":1},{"selector":".mb-11","declarations":1},{"selector":".mt-11","declarations":1},{"selector":".mb-10","declarations":1},{"selector":".mt-10","declarations":1},{"selector":".mb-9","declarations":1},{"selector":".mt-9","declarations":1},{"selector":".mb-8","declarations":1},{"selector":".mt-8","declarations":1},{"selector":".mb-7","declarations":1},{"selector":".mt-7","declarations":1},{"selector":".position-xl-fixed","declarations":1},{"selector":".position-xl-absolute","declarations":1},{"selector":".position-xl-relative","declarations":1},{"selector":".position-lg-fixed","declarations":1},{"selector":".position-lg-absolute","declarations":1},{"selector":".position-lg-relative","declarations":1},{"selector":".position-md-fixed","declarations":1},{"selector":".position-md-absolute","declarations":1},{"selector":".position-md-relative","declarations":1},{"selector":".position-sm-fixed","declarations":1},{"selector":".position-sm-absolute","declarations":1},{"selector":".position-sm-relative","declarations":1},{"selector":".border-white-fade","declarations":1},{"selector":".grayscale","declarations":1}]},"selectors":{"total":194,"type":0,"class":194,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".grayscale",".border-white-fade",".position-sm-relative",".position-sm-absolute",".position-sm-fixed",".position-md-relative",".position-md-absolute",".position-md-fixed",".position-lg-relative",".position-lg-absolute",".position-lg-fixed",".position-xl-relative",".position-xl-absolute",".position-xl-fixed",".mt-7",".mb-7",".my-7",".mt-8",".mb-8",".my-8",".mt-9",".mb-9",".my-9",".mt-10",".mb-10",".my-10",".mt-11",".mb-11",".my-11",".mt-12",".mb-12",".my-12",".mt-sm-7",".mb-sm-7",".my-sm-7",".mt-sm-8",".mb-sm-8",".my-sm-8",".mt-sm-9",".mb-sm-9",".my-sm-9",".mt-sm-10",".mb-sm-10",".my-sm-10",".mt-sm-11",".mb-sm-11",".my-sm-11",".mt-sm-12",".mb-sm-12",".my-sm-12",".mt-md-7",".mb-md-7",".my-md-7",".mt-md-8",".mb-md-8",".my-md-8",".mt-md-9",".mb-md-9",".my-md-9",".mt-md-10",".mb-md-10",".my-md-10",".mt-md-11",".mb-md-11",".my-md-11",".mt-md-12",".mb-md-12",".my-md-12",".mt-lg-7",".mb-lg-7",".my-lg-7",".mt-lg-8",".mb-lg-8",".my-lg-8",".mt-lg-9",".mb-lg-9",".my-lg-9",".mt-lg-10",".mb-lg-10",".my-lg-10",".mt-lg-11",".mb-lg-11",".my-lg-11",".mt-lg-12",".mb-lg-12",".my-lg-12",".mt-xl-7",".mb-xl-7",".my-xl-7",".mt-xl-8",".mb-xl-8",".my-xl-8",".mt-xl-9",".mb-xl-9",".my-xl-9",".mt-xl-10",".mb-xl-10",".my-xl-10",".mt-xl-11",".mb-xl-11",".my-xl-11",".mt-xl-12",".mb-xl-12",".my-xl-12",".pt-7",".pb-7",".py-7",".pt-8",".pb-8",".py-8",".pt-9",".pb-9",".py-9",".pt-10",".pb-10",".py-10",".pt-11",".pb-11",".py-11",".pt-12",".pb-12",".py-12",".pt-sm-7",".pb-sm-7",".py-sm-7",".pt-sm-8",".pb-sm-8",".py-sm-8",".pt-sm-9",".pb-sm-9",".py-sm-9",".pt-sm-10",".pb-sm-10",".py-sm-10",".pt-sm-11",".pb-sm-11",".py-sm-11",".pt-sm-12",".pb-sm-12",".py-sm-12",".pt-md-7",".pb-md-7",".py-md-7",".pt-md-8",".pb-md-8",".py-md-8",".pt-md-9",".pb-md-9",".py-md-9",".pt-md-10",".pb-md-10",".py-md-10",".pt-md-11",".pb-md-11",".py-md-11",".pt-md-12",".pb-md-12",".py-md-12",".pt-lg-7",".pb-lg-7",".py-lg-7",".pt-lg-8",".pb-lg-8",".py-lg-8",".pt-lg-9",".pb-lg-9",".py-lg-9",".pt-lg-10",".pb-lg-10",".py-lg-10",".pt-lg-11",".pb-lg-11",".py-lg-11",".pt-lg-12",".pb-lg-12",".py-lg-12",".pt-xl-7",".pb-xl-7",".py-xl-7",".pt-xl-8",".pb-xl-8",".py-xl-8",".pt-xl-9",".pb-xl-9",".py-xl-9",".pt-xl-10",".pb-xl-10",".py-xl-10",".pt-xl-11",".pb-xl-11",".py-xl-11",".pt-xl-12",".pb-xl-12",".py-xl-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":254,"unique":29,"properties":{"filter":["grayscale(100%)"],"border-color":["rgba(255,255,255,0.15)"],"position":["relative","absolute","fixed","relative","absolute","fixed","relative","absolute","fixed","relative","absolute","fixed"],"margin-top":["48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px"],"margin-bottom":["48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px"],"padding-top":["48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px"],"padding-bottom":["48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px"]}},"mediaQueries":{"total":52,"unique":4,"values":["(min-width: 544px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 1280px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)"],"contents":[{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":",.position-sm-fixed","declarations":1},{"selector":",.position-sm-absolute","declarations":1},{"selector":".position-sm-relative","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".position-sm-relative",".position-sm-absolute",".position-sm-fixed"],"specificity":{"max":10,"average":10}},"declarations":{"total":3,"unique":3,"properties":{"position":["relative","absolute","fixed"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":",.position-md-fixed","declarations":1},{"selector":",.position-md-absolute","declarations":1},{"selector":".position-md-relative","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".position-md-relative",".position-md-absolute",".position-md-fixed"],"specificity":{"max":10,"average":10}},"declarations":{"total":3,"unique":3,"properties":{"position":["relative","absolute","fixed"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":",.position-lg-fixed","declarations":1},{"selector":",.position-lg-absolute","declarations":1},{"selector":".position-lg-relative","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".position-lg-relative",".position-lg-absolute",".position-lg-fixed"],"specificity":{"max":10,"average":10}},"declarations":{"total":3,"unique":3,"properties":{"position":["relative","absolute","fixed"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":",.position-xl-fixed","declarations":1},{"selector":",.position-xl-absolute","declarations":1},{"selector":".position-xl-relative","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".position-xl-relative",".position-xl-absolute",".position-xl-fixed"],"specificity":{"max":10,"average":10}},"declarations":{"total":3,"unique":3,"properties":{"position":["relative","absolute","fixed"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-sm-7","declarations":2},{"selector":",.mb-sm-7","declarations":1},{"selector":".mt-sm-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-sm-7",".mb-sm-7",".my-sm-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["48px","48px"],"margin-bottom":["48px","48px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-sm-8","declarations":2},{"selector":",.mb-sm-8","declarations":1},{"selector":".mt-sm-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-sm-8",".mb-sm-8",".my-sm-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["64px","64px"],"margin-bottom":["64px","64px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-sm-9","declarations":2},{"selector":",.mb-sm-9","declarations":1},{"selector":".mt-sm-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-sm-9",".mb-sm-9",".my-sm-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["80px","80px"],"margin-bottom":["80px","80px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-sm-10","declarations":2},{"selector":",.mb-sm-10","declarations":1},{"selector":".mt-sm-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-sm-10",".mb-sm-10",".my-sm-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["96px","96px"],"margin-bottom":["96px","96px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-sm-11","declarations":2},{"selector":",.mb-sm-11","declarations":1},{"selector":".mt-sm-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-sm-11",".mb-sm-11",".my-sm-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["112px","112px"],"margin-bottom":["112px","112px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-sm-12","declarations":2},{"selector":",.mb-sm-12","declarations":1},{"selector":".mt-sm-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-sm-12",".mb-sm-12",".my-sm-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["128px","128px"],"margin-bottom":["128px","128px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-md-7","declarations":2},{"selector":",.mb-md-7","declarations":1},{"selector":".mt-md-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-md-7",".mb-md-7",".my-md-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["48px","48px"],"margin-bottom":["48px","48px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-md-8","declarations":2},{"selector":",.mb-md-8","declarations":1},{"selector":".mt-md-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-md-8",".mb-md-8",".my-md-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["64px","64px"],"margin-bottom":["64px","64px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-md-9","declarations":2},{"selector":",.mb-md-9","declarations":1},{"selector":".mt-md-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-md-9",".mb-md-9",".my-md-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["80px","80px"],"margin-bottom":["80px","80px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-md-10","declarations":2},{"selector":",.mb-md-10","declarations":1},{"selector":".mt-md-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-md-10",".mb-md-10",".my-md-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["96px","96px"],"margin-bottom":["96px","96px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-md-11","declarations":2},{"selector":",.mb-md-11","declarations":1},{"selector":".mt-md-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-md-11",".mb-md-11",".my-md-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["112px","112px"],"margin-bottom":["112px","112px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-md-12","declarations":2},{"selector":",.mb-md-12","declarations":1},{"selector":".mt-md-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-md-12",".mb-md-12",".my-md-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["128px","128px"],"margin-bottom":["128px","128px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-lg-7","declarations":2},{"selector":",.mb-lg-7","declarations":1},{"selector":".mt-lg-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-lg-7",".mb-lg-7",".my-lg-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["48px","48px"],"margin-bottom":["48px","48px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-lg-8","declarations":2},{"selector":",.mb-lg-8","declarations":1},{"selector":".mt-lg-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-lg-8",".mb-lg-8",".my-lg-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["64px","64px"],"margin-bottom":["64px","64px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-lg-9","declarations":2},{"selector":",.mb-lg-9","declarations":1},{"selector":".mt-lg-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-lg-9",".mb-lg-9",".my-lg-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["80px","80px"],"margin-bottom":["80px","80px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-lg-10","declarations":2},{"selector":",.mb-lg-10","declarations":1},{"selector":".mt-lg-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-lg-10",".mb-lg-10",".my-lg-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["96px","96px"],"margin-bottom":["96px","96px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-lg-11","declarations":2},{"selector":",.mb-lg-11","declarations":1},{"selector":".mt-lg-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-lg-11",".mb-lg-11",".my-lg-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["112px","112px"],"margin-bottom":["112px","112px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-lg-12","declarations":2},{"selector":",.mb-lg-12","declarations":1},{"selector":".mt-lg-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-lg-12",".mb-lg-12",".my-lg-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["128px","128px"],"margin-bottom":["128px","128px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-xl-7","declarations":2},{"selector":",.mb-xl-7","declarations":1},{"selector":".mt-xl-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-xl-7",".mb-xl-7",".my-xl-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["48px","48px"],"margin-bottom":["48px","48px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-xl-8","declarations":2},{"selector":",.mb-xl-8","declarations":1},{"selector":".mt-xl-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-xl-8",".mb-xl-8",".my-xl-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["64px","64px"],"margin-bottom":["64px","64px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-xl-9","declarations":2},{"selector":",.mb-xl-9","declarations":1},{"selector":".mt-xl-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-xl-9",".mb-xl-9",".my-xl-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["80px","80px"],"margin-bottom":["80px","80px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-xl-10","declarations":2},{"selector":",.mb-xl-10","declarations":1},{"selector":".mt-xl-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-xl-10",".mb-xl-10",".my-xl-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["96px","96px"],"margin-bottom":["96px","96px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-xl-11","declarations":2},{"selector":",.mb-xl-11","declarations":1},{"selector":".mt-xl-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-xl-11",".mb-xl-11",".my-xl-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["112px","112px"],"margin-bottom":["112px","112px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-xl-12","declarations":2},{"selector":",.mb-xl-12","declarations":1},{"selector":".mt-xl-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-xl-12",".mb-xl-12",".my-xl-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["128px","128px"],"margin-bottom":["128px","128px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-sm-7","declarations":2},{"selector":",.pb-sm-7","declarations":1},{"selector":".pt-sm-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-sm-7",".pb-sm-7",".py-sm-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["48px","48px"],"padding-bottom":["48px","48px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-sm-8","declarations":2},{"selector":",.pb-sm-8","declarations":1},{"selector":".pt-sm-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-sm-8",".pb-sm-8",".py-sm-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["64px","64px"],"padding-bottom":["64px","64px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-sm-9","declarations":2},{"selector":",.pb-sm-9","declarations":1},{"selector":".pt-sm-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-sm-9",".pb-sm-9",".py-sm-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["80px","80px"],"padding-bottom":["80px","80px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-sm-10","declarations":2},{"selector":",.pb-sm-10","declarations":1},{"selector":".pt-sm-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-sm-10",".pb-sm-10",".py-sm-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["96px","96px"],"padding-bottom":["96px","96px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-sm-11","declarations":2},{"selector":",.pb-sm-11","declarations":1},{"selector":".pt-sm-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-sm-11",".pb-sm-11",".py-sm-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["112px","112px"],"padding-bottom":["112px","112px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-sm-12","declarations":2},{"selector":",.pb-sm-12","declarations":1},{"selector":".pt-sm-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-sm-12",".pb-sm-12",".py-sm-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["128px","128px"],"padding-bottom":["128px","128px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-md-7","declarations":2},{"selector":",.pb-md-7","declarations":1},{"selector":".pt-md-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-md-7",".pb-md-7",".py-md-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["48px","48px"],"padding-bottom":["48px","48px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-md-8","declarations":2},{"selector":",.pb-md-8","declarations":1},{"selector":".pt-md-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-md-8",".pb-md-8",".py-md-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["64px","64px"],"padding-bottom":["64px","64px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-md-9","declarations":2},{"selector":",.pb-md-9","declarations":1},{"selector":".pt-md-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-md-9",".pb-md-9",".py-md-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["80px","80px"],"padding-bottom":["80px","80px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-md-10","declarations":2},{"selector":",.pb-md-10","declarations":1},{"selector":".pt-md-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-md-10",".pb-md-10",".py-md-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["96px","96px"],"padding-bottom":["96px","96px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-md-11","declarations":2},{"selector":",.pb-md-11","declarations":1},{"selector":".pt-md-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-md-11",".pb-md-11",".py-md-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["112px","112px"],"padding-bottom":["112px","112px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-md-12","declarations":2},{"selector":",.pb-md-12","declarations":1},{"selector":".pt-md-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-md-12",".pb-md-12",".py-md-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["128px","128px"],"padding-bottom":["128px","128px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-lg-7","declarations":2},{"selector":",.pb-lg-7","declarations":1},{"selector":".pt-lg-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-lg-7",".pb-lg-7",".py-lg-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["48px","48px"],"padding-bottom":["48px","48px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-lg-8","declarations":2},{"selector":",.pb-lg-8","declarations":1},{"selector":".pt-lg-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-lg-8",".pb-lg-8",".py-lg-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["64px","64px"],"padding-bottom":["64px","64px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-lg-9","declarations":2},{"selector":",.pb-lg-9","declarations":1},{"selector":".pt-lg-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-lg-9",".pb-lg-9",".py-lg-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["80px","80px"],"padding-bottom":["80px","80px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-lg-10","declarations":2},{"selector":",.pb-lg-10","declarations":1},{"selector":".pt-lg-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-lg-10",".pb-lg-10",".py-lg-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["96px","96px"],"padding-bottom":["96px","96px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-lg-11","declarations":2},{"selector":",.pb-lg-11","declarations":1},{"selector":".pt-lg-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-lg-11",".pb-lg-11",".py-lg-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["112px","112px"],"padding-bottom":["112px","112px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-lg-12","declarations":2},{"selector":",.pb-lg-12","declarations":1},{"selector":".pt-lg-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-lg-12",".pb-lg-12",".py-lg-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["128px","128px"],"padding-bottom":["128px","128px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-xl-7","declarations":2},{"selector":",.pb-xl-7","declarations":1},{"selector":".pt-xl-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-xl-7",".pb-xl-7",".py-xl-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["48px","48px"],"padding-bottom":["48px","48px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-xl-8","declarations":2},{"selector":",.pb-xl-8","declarations":1},{"selector":".pt-xl-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-xl-8",".pb-xl-8",".py-xl-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["64px","64px"],"padding-bottom":["64px","64px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-xl-9","declarations":2},{"selector":",.pb-xl-9","declarations":1},{"selector":".pt-xl-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-xl-9",".pb-xl-9",".py-xl-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["80px","80px"],"padding-bottom":["80px","80px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-xl-10","declarations":2},{"selector":",.pb-xl-10","declarations":1},{"selector":".pt-xl-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-xl-10",".pb-xl-10",".py-xl-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["96px","96px"],"padding-bottom":["96px","96px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-xl-11","declarations":2},{"selector":",.pb-xl-11","declarations":1},{"selector":".pt-xl-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-xl-11",".pb-xl-11",".py-xl-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["112px","112px"],"padding-bottom":["112px","112px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-xl-12","declarations":2},{"selector":",.pb-xl-12","declarations":1},{"selector":".pt-xl-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-xl-12",".pb-xl-12",".py-xl-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["128px","128px"],"padding-bottom":["128px","128px"]}}}]}}}
+29
node_modules/primer-marketing-utilities/docs/borders.md
··· 1 + --- 2 + title: Marketing Borders 3 + sort_title: Borders Marketing 4 + path: utilities/marketing-borders 5 + status: Stable 6 + --- 7 + 8 + The following border utilities are meant to used in addition to those within primer-core. 9 + 10 + {:toc} 11 + 12 + ## Border Colors 13 + 14 + ### White border with alpha transparency 15 + 16 + Use `.border-white-fade` to add a white border with an alpha transparency of 0.15. This is useful when you want a border that is a lighter shade of the background color. Additional border colors are available in [primer-core border utilities](/css/utilities/borders#border-colors). 17 + 18 + ```html 19 + <div class="bg-gray-dark text-white p-3 mb-2"> 20 + <span class="border border-white-fade p-2"> 21 + .border-white-fade .bg-gray-dark 22 + </span> 23 + </div> 24 + <div class="bg-blue text-white p-3"> 25 + <span class="border border-white-fade p-2"> 26 + .border-white-fade .bg-blue 27 + </span> 28 + </div> 29 + ```
+20
node_modules/primer-marketing-utilities/docs/filters.md
··· 1 + --- 2 + title: Marketing Filters 3 + path: utilities/marketing-filters 4 + status: Stable 5 + status_issue: https://github.com/github/design-systems/issues/302 6 + --- 7 + 8 + Filter utility classes can be applied to divs or images to apply visual effects. 9 + 10 + <div class="flash flash-warn"> 11 + Note: CSS filters are <a href="http://caniuse.com/#feat=css-filters">not supported by IE</a> 12 + </div> 13 + 14 + ## Grayscale 15 + 16 + Applying `.grayscale` to an element will remove all of its colors, and make it render in black and white. 17 + 18 + ```html 19 + <img src="https://github.com/probot.png" class="img-responsive grayscale" alt=""> 20 + ```
+35
node_modules/primer-marketing-utilities/docs/layout.md
··· 1 + --- 2 + title: Marketing Layout 3 + sort_title: Layout Marketing 4 + path: utilities/marketing-layout 5 + status: Stable 6 + --- 7 + 8 + Marketing layout utilities build on top of [primer-core utilities](/css/utilities/layout#position), adding the option of responsive positioning. 9 + 10 + {:toc} 11 + 12 + ## Responsive position 13 + 14 + Use responsive position utilities to adjust the position of an element at different breakpoints. 15 + 16 + ```html 17 + <div class="position-relative p-6 bg-gray"> 18 + <div class="d-inline-block position-md-absolute bottom-0 right-0 border bg-white p-2"> 19 + .position-md-absolute 20 + </div> 21 + </div> 22 + 23 + <div class="float-left border m-3" style="width:100px; height:100px;"> 24 + default 25 + </div> 26 + <div class="float-left position-lg-relative border m-3" style="width:100px; height:100px; top:12px; left:12px;"> 27 + .position-lg-relative 28 + </div> 29 + <div class="float-left border m-3" style="width:100px; height:100px;"> 30 + default 31 + </div> 32 + <div class="float-left border m-3" style="width:100px; height:100px;"> 33 + default 34 + </div> 35 + ```
+38
node_modules/primer-marketing-utilities/docs/margin.md
··· 1 + --- 2 + title: Marketing Margin 3 + sort_title: Margin Marketing 4 + path: utilities/marketing-margin 5 + status: Stable 6 + status_issue: https://github.com/github/design-systems/issues/378 7 + --- 8 + 9 + Marketing margin utilities extend [core margin utilities](/css/support/spacing) across the y-axis only. The [marketing scale](/css/support/marketing-variables#extended-spacing-scale) starts from spacer 7 up to 12, and steps first by `8px` for spacer 7 and continues in increments of `16px` for spacer 8 to 12. 10 + 11 + 12 + ## Y-axis margin utilities 13 + 14 + Use marketing margin utilities to apply margin to top, bottom, or both y-axis of an element. These utilities can change or override default margins, and can be used with a spacing scale of 7-12. 15 + 16 + ```html 17 + <div class="margin-orange d-inline-block"> 18 + <div class="d-inline-block block-blue mt-7">.mt-7</div> 19 + </div> 20 + <div class="margin-orange d-inline-block"> 21 + <div class="d-inline-block block-blue mb-7">.mb-7</div> 22 + </div> 23 + <div class="margin-orange d-inline-block"> 24 + <div class="d-inline-block block-blue my-7">.my-7</div> 25 + </div> 26 + ``` 27 + 28 + ## Responsive y-axis margin utilities 29 + 30 + All marketing margin utilities can be adjusted per [breakpoint](/css/objects/grid#breakpoints) using the following formula: `m[y-direction]-[breakpoint]-[spacer]`. Each responsive style is applied to the specified breakpoint and up. 31 + 32 + ```html 33 + <div class="d-inline-block margin-orange"> 34 + <div class="my-sm-7 mb-lg-9 d-inline-block block-blue"> 35 + .my-sm-7 .mb-lg-9 36 + </div> 37 + </div> 38 + ```
+37
node_modules/primer-marketing-utilities/docs/padding.md
··· 1 + --- 2 + title: Marketing Padding 3 + sort_title: Padding Marketing 4 + path: utilities/marketing-padding 5 + status: Stable 6 + status_issue: https://github.com/github/design-systems/issues/378 7 + --- 8 + 9 + Marketing padding utilities extend [core margin utilities](/css/utilities/margin) across the y-axis only. The [marketing scale](/css/support/marketing-variables#extended-spacing-scale) starts from spacer 7 up to 12, and steps first by `8px` for spacer 7 and continues in increments of `16px` for spacer 8 to 12. 10 + 11 + ## Y-axis padding utilities 12 + 13 + Use marketing padding utilities to apply padding to top, bottom, or both y-axis of an element. These utilities can change or override default padding, and can be used with a spacing scale of 7-12. 14 + 15 + ```html 16 + <div class="margin-orange d-inline-block"> 17 + <div class="d-inline-block block-blue pt-7">.pt-7</div> 18 + </div> 19 + <div class="margin-orange d-inline-block"> 20 + <div class="d-inline-block block-blue pb-7">.pb-7</div> 21 + </div> 22 + <div class="margin-orange d-inline-block"> 23 + <div class="d-inline-block block-blue py-7">.py-7</div> 24 + </div> 25 + ``` 26 + 27 + ## Responsive y-axis padding utilities 28 + 29 + All marketing padding utilities can be adjusted per [breakpoint](/css/objects/grid#breakpoints) using the following formula: `p[y-direction]-[breakpoint]-[spacer]`. Each responsive style is applied to the specified breakpoint and up. 30 + 31 + ```html 32 + <div class="d-inline-block margin-orange"> 33 + <div class="py-sm-7 pb-lg-9 d-inline-block block-blue"> 34 + .py-sm-7 .pb-lg-9 35 + </div> 36 + </div> 37 + ```
+8
node_modules/primer-marketing-utilities/index.scss
··· 1 + @import "primer-support/index.scss"; 2 + @import "primer-marketing-support/index.scss"; 3 + // utilities 4 + @import "./lib/filters.scss"; 5 + @import "./lib/borders.scss"; 6 + @import "./lib/layout.scss"; 7 + @import "./lib/margin.scss"; 8 + @import "./lib/padding.scss";
+9
node_modules/primer-marketing-utilities/lib/borders.scss
··· 1 + // Border utilities 2 + 3 + // XXX If you're looking for responsive border utilities, they've moved to 4 + // ../../primer-utilities/lib/borders.scss 5 + 6 + /* Use with .border to turn the border rgba white 0.15 */ 7 + .border-white-fade { 8 + border-color: $white-fade-15 !important; 9 + }
+4
node_modules/primer-marketing-utilities/lib/filters.scss
··· 1 + // stylelint-disable no-unsupported-browser-features 2 + .grayscale { 3 + filter: grayscale(100%); 4 + }
+17
node_modules/primer-marketing-utilities/lib/layout.scss
··· 1 + // Layout utilities 2 + // stylelint-disable block-opening-brace-space-before, primer/selector-no-utility, comment-empty-line-before 3 + 4 + @warn "Responsive position utilities will be moved from primer-marketing-utilities to primer-utilities in primer v11.0.0."; 5 + 6 + // Responsive position utilities 7 + 8 + @each $breakpoint in map-keys($breakpoints) { 9 + @include breakpoint($breakpoint) { 10 + /* Set position to relative */ 11 + .position-#{$breakpoint}-relative { position: relative !important; } 12 + /* Set position to absolute */ 13 + .position-#{$breakpoint}-absolute { position: absolute !important; } 14 + /* Set position to fixed */ 15 + .position-#{$breakpoint}-fixed { position: fixed !important; } 16 + } 17 + }
+41
node_modules/primer-marketing-utilities/lib/margin.scss
··· 1 + // Margin spacer utilities for marketing 2 + // Utilities only added for y-direction margin (i.e. top & bottom) 3 + // stylelint-disable block-opening-brace-space-before, declaration-colon-space-before, primer/selector-no-utility, comment-empty-line-before 4 + @for $i from 1 through length($marketingSpacers) { 5 + $size: #{nth($marketingSpacers, $i)}; 6 + $scale: #{$i + 6}; // 7, 8, 9, 10, 11 7 + 8 + /* Set a #{$size} margin on the top */ 9 + .mt-#{$scale} { margin-top : #{$size} !important; } 10 + /* Set a #{$size} margin on the bottom */ 11 + .mb-#{$scale} { margin-bottom: #{$size} !important; } 12 + 13 + /* Set a #{$size} margin on the top & bottom */ 14 + .my-#{$scale} { 15 + margin-top : #{$size} !important; 16 + margin-bottom: #{$size} !important; 17 + } 18 + } 19 + 20 + // Loop through the breakpoint values 21 + @each $breakpoint in map-keys($breakpoints) { 22 + 23 + // Loop through the spacer values 24 + @for $i from 1 through length($marketingSpacers) { 25 + @include breakpoint($breakpoint) { 26 + $size: #{nth($marketingSpacers, $i)}; // sm, md, lg, xl 27 + $scale: #{$i + 6}; // 7, 8, 9, 10, 11 28 + 29 + /* Set a #{$size} margin on the top at the breakpoint #{$breakpoint} */ 30 + .mt-#{$breakpoint}-#{$scale} { margin-top: #{$size} !important; } 31 + /* Set a #{$size} margin on the bottom at the breakpoint #{$breakpoint} */ 32 + .mb-#{$breakpoint}-#{$scale} { margin-bottom: #{$size} !important; } 33 + 34 + /* Set a #{$size} margin on the top & bottom at the breakpoint #{$breakpoint} */ 35 + .my-#{$breakpoint}-#{$scale} { 36 + margin-top: #{$size} !important; 37 + margin-bottom: #{$size} !important; 38 + } 39 + } 40 + } 41 + }
+43
node_modules/primer-marketing-utilities/lib/padding.scss
··· 1 + // Padding spacer utilities for marketing 2 + // stylelint-disable block-opening-brace-space-before, declaration-colon-space-before 3 + // stylelint-disable comment-empty-line-before 4 + @for $i from 1 through length($marketingSpacers) { 5 + $size: #{nth($marketingSpacers, $i)}; 6 + $scale: #{$i + 6}; // 7, 8, 9, 10, 11 7 + 8 + /* Set a #{$size} padding to the top */ 9 + .pt-#{$scale} { padding-top : #{$size} !important; } 10 + /* Set a #{$size} padding to the bottom */ 11 + .pb-#{$scale} { padding-bottom: #{$size} !important; } 12 + 13 + /* Set a #{$size} padding to the top & bottom */ 14 + .py-#{$scale} { 15 + padding-top: #{$size} !important; 16 + padding-bottom: #{$size} !important; 17 + } 18 + } 19 + 20 + // Responsive padding spacer utilities 21 + 22 + // Loop through the breakpoint values 23 + @each $breakpoint in map-keys($breakpoints) { 24 + 25 + // Loop through the spacer values 26 + @for $i from 1 through length($marketingSpacers) { 27 + @include breakpoint($breakpoint) { 28 + $size: #{nth($marketingSpacers, $i)}; // xs, sm, md, lg, xl 29 + $scale: #{$i + 6}; // 7, 8, 9, 10, 11 30 + 31 + /* Set a #{$size} padding to the top at the #{$breakpoint} breakpoint */ 32 + .pt-#{$breakpoint}-#{$scale} { padding-top: #{$size} !important; } 33 + /* Set a #{$size} padding to the bottom at the #{$breakpoint} breakpoint */ 34 + .pb-#{$breakpoint}-#{$scale} { padding-bottom: #{$size} !important; } 35 + 36 + /* Set a #{$size} padding to the top & bottom at the #{$breakpoint} breakpoint */ 37 + .py-#{$breakpoint}-#{$scale} { 38 + padding-top: #{$size} !important; 39 + padding-bottom: #{$size} !important; 40 + } 41 + } 42 + } 43 + }
+77
node_modules/primer-marketing-utilities/package.json
··· 1 + { 2 + "_from": "primer-marketing-utilities@1.7.3", 3 + "_id": "primer-marketing-utilities@1.7.3", 4 + "_inBundle": false, 5 + "_integrity": "sha512-YYDPgyC0G65tPHwZ6ktxfEAqUkJlU2sZjzdcH7thlcg83/UqiZfgmgiiBAxdMjrACY7Q2X9HaHicr5F4rmPhPw==", 6 + "_location": "/primer-marketing-utilities", 7 + "_phantomChildren": {}, 8 + "_requested": { 9 + "type": "version", 10 + "registry": true, 11 + "raw": "primer-marketing-utilities@1.7.3", 12 + "name": "primer-marketing-utilities", 13 + "escapedName": "primer-marketing-utilities", 14 + "rawSpec": "1.7.3", 15 + "saveSpec": null, 16 + "fetchSpec": "1.7.3" 17 + }, 18 + "_requiredBy": [ 19 + "/primer-marketing" 20 + ], 21 + "_resolved": "https://registry.npmjs.org/primer-marketing-utilities/-/primer-marketing-utilities-1.7.3.tgz", 22 + "_shasum": "7ae93ceb10aa21e5efd94edee70bb66152e90929", 23 + "_spec": "primer-marketing-utilities@1.7.3", 24 + "_where": "/Users/sophieshepherd/Desktop/projects/profile-generator/node_modules/primer-marketing", 25 + "author": { 26 + "name": "GitHub, Inc." 27 + }, 28 + "bugs": { 29 + "url": "https://github.com/primer/primer/issues" 30 + }, 31 + "bundleDependencies": false, 32 + "dependencies": { 33 + "primer-marketing-support": "1.5.6", 34 + "primer-support": "4.7.2" 35 + }, 36 + "deprecated": false, 37 + "description": "Marketing specific immutable, atomic CSS classes", 38 + "files": [ 39 + "index.scss", 40 + "lib", 41 + "build", 42 + "docs" 43 + ], 44 + "homepage": "http://primer.github.io/", 45 + "keywords": [ 46 + "primer", 47 + "css", 48 + "github", 49 + "design-system" 50 + ], 51 + "license": "MIT", 52 + "main": "build/index.js", 53 + "name": "primer-marketing-utilities", 54 + "primer": { 55 + "category": "marketing", 56 + "module_type": "utilities", 57 + "class_whitelist": [ 58 + "border-??-*", 59 + "position-??-*" 60 + ] 61 + }, 62 + "repository": { 63 + "type": "git", 64 + "url": "https://github.com/primer/primer/tree/master/modules/primer-marketing-utilities" 65 + }, 66 + "sass": "index.scss", 67 + "scripts": { 68 + "build": "../../script/npm-run primer-module-build index.scss", 69 + "lint": "../../script/lint-scss", 70 + "postpublish": "../../script/notify success", 71 + "prepare": "npm run build", 72 + "prepublishOnly": "../../script/notify pending", 73 + "test": "../../script/npm-run-all build lint" 74 + }, 75 + "style": "build/build.css", 76 + "version": "1.7.3" 77 + }
+21
node_modules/primer-marketing/LICENSE
··· 1 + The MIT License (MIT) 2 + 3 + Copyright (c) 2019 GitHub Inc. 4 + 5 + Permission is hereby granted, free of charge, to any person obtaining a copy 6 + of this software and associated documentation files (the "Software"), to deal 7 + in the Software without restriction, including without limitation the rights 8 + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 + copies of the Software, and to permit persons to whom the Software is 10 + furnished to do so, subject to the following conditions: 11 + 12 + The above copyright notice and this permission notice shall be included in all 13 + copies or substantial portions of the Software. 14 + 15 + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 + SOFTWARE.
+48
node_modules/primer-marketing/README.md
··· 1 + # Primer marketing 2 + 3 + [![npm version](https://img.shields.io/npm/v/primer-marketing.svg)](https://www.npmjs.org/package/primer-marketing) 4 + [![Build Status](https://travis-ci.org/primer/primer.svg?branch=master)](https://travis-ci.org/primer/primer) 5 + 6 + > Primer marketing is one of 3 meta-packages that belong to the Primer framework. Primer marketing contains packages that are used on GitHub marketing websites. 7 + 8 + This repository is a compilation of [several CSS packages](https://github.com/primer/primer). You can break it down into smaller sections using npm. 9 + 10 + ## Install 11 + 12 + This repository is distributed with [npm][npm]. After [installing npm][install-npm], you can install `primer` with this command. **You must have npm >=3.0 installed to be able to satisfy the dependency paths** 13 + 14 + ``` 15 + $ npm install --save primer-marketing 16 + ``` 17 + 18 + ## Usage 19 + 20 + The source files included are written in [Sass][sass] (`scss`) You can simply point your sass `include-path` at your `node_modules` directory and import it like this. 21 + 22 + ```scss 23 + @import "primer-marketing/index.scss"; 24 + ``` 25 + 26 + You can also import specific portions of the module by importing those partials from the `/lib/` folder. _Make sure you import any requirements along with the modules._ 27 + 28 + ## Build 29 + 30 + For a compiled **css** version of this module, a npm script is included that will output a CSS version to `build/build.css` The built CSS file is also included in the npm package. 31 + 32 + ``` 33 + $ npm run build 34 + ``` 35 + 36 + ## Documentation 37 + 38 + You can read more about primer in the [docs][docs]. 39 + 40 + ## License 41 + 42 + [MIT](./LICENSE) &copy; [GitHub](https://github.com/) 43 + 44 + [primer]: https://github.com/primer/primer 45 + [docs]: http://primer.github.io/ 46 + [npm]: https://www.npmjs.com/ 47 + [install-npm]: https://docs.npmjs.com/getting-started/installing-node 48 + [sass]: http://sass-lang.com/
+6
node_modules/primer-marketing/build/build.css
··· 1 + /*! 2 + * Primer-marketing 3 + * http://primer.github.io 4 + * 5 + * Released under MIT license. Copyright (c) 2019 GitHub Inc. 6 + */.alt-mono-font{font-family:"SFMono-Regular",Consolas,"Liberation Mono",Menlo,Courier,monospace}.alt-h0,.alt-h1,.alt-h2,.alt-h3,.alt-h4,.alt-h5,.alt-h6,.alt-lead{-webkit-font-smoothing:antialiased;font-family:Roboto,-apple-system,BlinkMacSystemFont,"Helvetica Neue","Segoe UI","Oxygen","Ubuntu","Cantarell","Open Sans",sans-serif}.alt-h0{font-size:48px;font-weight:300}@media (min-width: 768px){.alt-h0{font-size:54px}}@media (min-width: 1012px){.alt-h0{font-size:72px}}.alt-h1{font-size:36px;font-weight:300}@media (min-width: 768px){.alt-h1{font-size:48px}}@media (min-width: 1012px){.alt-h1{font-size:54px}}.alt-h2{font-size:28px;font-weight:300}@media (min-width: 768px){.alt-h2{font-size:34px}}@media (min-width: 1012px){.alt-h2{font-size:38px}}.alt-h3{font-size:18px;font-weight:400}@media (min-width: 768px){.alt-h3{font-size:20px}}@media (min-width: 1012px){.alt-h3{font-size:22px}}.alt-h4{font-size:16px;font-weight:500}.alt-h5{font-size:14px;font-weight:500}.alt-h6{font-size:12px;font-weight:500}.alt-lead{-webkit-font-smoothing:antialiased;font-size:21px;font-weight:300}@media (min-width: 768px){.alt-lead{font-size:24px}}@media (min-width: 1012px){.alt-lead{font-size:26px}}.alt-text-small{font-size:14px !important}.pullquote{padding-top:0;padding-bottom:0;padding-left:8px;margin-bottom:24px;font-family:"SFMono-Regular",Consolas,"Liberation Mono",Menlo,Courier,monospace;font-size:16px;line-height:1.4;color:#586069;border-left:3px solid #e1e4e8}@media (min-width: 768px){.pullquote{padding-left:12px;margin-bottom:32px;margin-left:-15px;font-size:18px;line-height:1.5}}.btn-orange{color:#fff;background-color:#d25a08;background-image:linear-gradient(-180deg, #f7802f 0%, #d25a08 90%)}.btn-orange:focus,.btn-orange.focus{box-shadow:0 0 0 0.2em rgba(247,128,47,0.4)}.btn-orange:hover,.btn-orange.hover{background-color:#c85607;background-image:linear-gradient(-180deg, #f77a25 0%, #c85607 90%);background-position:-.5em;border-color:rgba(27,31,35,0.5)}.btn-orange:active,.btn-orange.selected,[open]>.btn-orange{background-color:#c65e17;background-image:none;border-color:rgba(27,31,35,0.5);box-shadow:inset 0 0.15em 0.3em rgba(27,31,35,0.15)}.btn-orange:disabled,.btn-orange.disabled{color:rgba(255,255,255,0.75);background-color:#e9ad83;background-image:none;border-color:rgba(27,31,35,0.2);box-shadow:none}.btn-orange .Counter{color:#f46909;background-color:#fff}.btn-outline-purple{color:#6f42c1;background-color:#fff;background-image:none}.btn-outline-purple .Counter{background-color:rgba(27,31,35,0.07)}.btn-outline-purple:hover,.btn-outline-purple:active,.btn-outline-purple.selected,[open]>.btn-outline-purple{color:#fff;background-color:#6f42c1;background-image:none;border-color:#6f42c1}.btn-outline-purple:hover .Counter,.btn-outline-purple:active .Counter,.btn-outline-purple.selected .Counter,[open]>.btn-outline-purple .Counter{color:#6f42c1;background-color:#fff}.btn-outline-purple:focus{border-color:#6f42c1;box-shadow:0 0 0 0.2em rgba(111,66,193,0.4)}.btn-outline-purple:disabled,.btn-outline-purple.disabled{color:rgba(27,31,35,0.3);background-color:#fff;border-color:rgba(27,31,35,0.15);box-shadow:none}.btn-outline-orange{color:#f66a0a;background-color:#fff;background-image:none}.btn-outline-orange .Counter{background-color:rgba(27,31,35,0.07)}.btn-outline-orange:hover,.btn-outline-orange:active,.btn-outline-orange.selected,[open]>.btn-outline-orange{color:#fff;background-color:#f66a0a;background-image:none;border-color:#f66a0a}.btn-outline-orange:hover .Counter,.btn-outline-orange:active .Counter,.btn-outline-orange.selected .Counter,[open]>.btn-outline-orange .Counter{color:#f66a0a;background-color:#fff}.btn-outline-orange:focus{border-color:#f66a0a;box-shadow:0 0 0 0.2em rgba(246,106,10,0.4)}.btn-outline-orange:disabled,.btn-outline-orange.disabled{color:rgba(27,31,35,0.3);background-color:#fff;border-color:rgba(27,31,35,0.15);box-shadow:none}.btn-outline-green{color:#28a745;background-color:#fff;background-image:none}.btn-outline-green .Counter{background-color:rgba(27,31,35,0.07)}.btn-outline-green:hover,.btn-outline-green:active,.btn-outline-green.selected,[open]>.btn-outline-green{color:#fff;background-color:#28a745;background-image:none;border-color:#28a745}.btn-outline-green:hover .Counter,.btn-outline-green:active .Counter,.btn-outline-green.selected .Counter,[open]>.btn-outline-green .Counter{color:#28a745;background-color:#fff}.btn-outline-green:focus{border-color:#28a745;box-shadow:0 0 0 0.2em rgba(40,167,69,0.4)}.btn-outline-green:disabled,.btn-outline-green.disabled{color:rgba(27,31,35,0.3);background-color:#fff;border-color:rgba(27,31,35,0.15);box-shadow:none}.btn-transparent{color:#fff;background-color:transparent;background-image:none;border:1px solid rgba(255,255,255,0.5)}.btn-transparent:hover,.btn-transparent:active{color:#2f363d;background-color:#fff;background-image:none;border-color:#fff}.jumbotron{position:relative;padding-top:40px;padding-bottom:40px}@media (min-width: 544px){.jumbotron{padding-top:60px;padding-bottom:60px}}@media (min-width: 1280px){.jumbotron{padding-top:120px;padding-bottom:120px}}@media (min-width: 1012px){.jumbotron-supertron{height:45vw;min-height:590px;max-height:55vh;padding-top:80px;padding-bottom:80px}}.jumbotron-minitron{padding-top:24px;padding-bottom:24px}@media (min-width: 544px){.jumbotron-minitron{padding-top:32px;padding-bottom:32px}}.jumbotron-shadow::after{position:absolute;bottom:0;left:0;width:100%;height:30px;content:" ";background-color:transparent;background-image:linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.05));background-repeat:repeat-x;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.05)}.jumbotron-photo{position:relative;background-color:#24292e;background-size:cover}.jumbotron-photo::before{position:absolute;bottom:0;left:0;display:block;width:100%;height:100%;content:"";background-color:rgba(0,0,0,0.25)}.page-section{padding:32px 0;margin-top:0}@media (min-width: 768px){.page-section{padding:56px 0}}.page-section-jumplink:target{padding-top:112px}@media (min-width: 768px){.page-section-jumplink:target{padding-top:80px}}.data-table{width:100%;margin-top:16px;border-collapse:collapse;border:1px #e1e4e8 solid;box-shadow:0 1px 1px rgba(27,31,35,0.05)}.data-table th{font-weight:400;text-align:left}.data-table td,.data-table th{padding:16px;border-right:1px #e1e4e8 solid;border-bottom:1px #e1e4e8 solid}.data-table tbody th{width:25%}.data-table tbody th,.data-table tbody td{border-bottom-color:#e1e4e8}.data-table tbody tr:last-child th,.data-table tbody tr:last-child td{border-bottom:1px #e1e4e8 solid}.grayscale{filter:grayscale(100%)}.border-white-fade{border-color:rgba(255,255,255,0.15) !important}@media (min-width: 544px){.position-sm-relative{position:relative !important}.position-sm-absolute{position:absolute !important}.position-sm-fixed{position:fixed !important}}@media (min-width: 768px){.position-md-relative{position:relative !important}.position-md-absolute{position:absolute !important}.position-md-fixed{position:fixed !important}}@media (min-width: 1012px){.position-lg-relative{position:relative !important}.position-lg-absolute{position:absolute !important}.position-lg-fixed{position:fixed !important}}@media (min-width: 1280px){.position-xl-relative{position:relative !important}.position-xl-absolute{position:absolute !important}.position-xl-fixed{position:fixed !important}}.mt-7{margin-top:48px !important}.mb-7{margin-bottom:48px !important}.my-7{margin-top:48px !important;margin-bottom:48px !important}.mt-8{margin-top:64px !important}.mb-8{margin-bottom:64px !important}.my-8{margin-top:64px !important;margin-bottom:64px !important}.mt-9{margin-top:80px !important}.mb-9{margin-bottom:80px !important}.my-9{margin-top:80px !important;margin-bottom:80px !important}.mt-10{margin-top:96px !important}.mb-10{margin-bottom:96px !important}.my-10{margin-top:96px !important;margin-bottom:96px !important}.mt-11{margin-top:112px !important}.mb-11{margin-bottom:112px !important}.my-11{margin-top:112px !important;margin-bottom:112px !important}.mt-12{margin-top:128px !important}.mb-12{margin-bottom:128px !important}.my-12{margin-top:128px !important;margin-bottom:128px !important}@media (min-width: 544px){.mt-sm-7{margin-top:48px !important}.mb-sm-7{margin-bottom:48px !important}.my-sm-7{margin-top:48px !important;margin-bottom:48px !important}}@media (min-width: 544px){.mt-sm-8{margin-top:64px !important}.mb-sm-8{margin-bottom:64px !important}.my-sm-8{margin-top:64px !important;margin-bottom:64px !important}}@media (min-width: 544px){.mt-sm-9{margin-top:80px !important}.mb-sm-9{margin-bottom:80px !important}.my-sm-9{margin-top:80px !important;margin-bottom:80px !important}}@media (min-width: 544px){.mt-sm-10{margin-top:96px !important}.mb-sm-10{margin-bottom:96px !important}.my-sm-10{margin-top:96px !important;margin-bottom:96px !important}}@media (min-width: 544px){.mt-sm-11{margin-top:112px !important}.mb-sm-11{margin-bottom:112px !important}.my-sm-11{margin-top:112px !important;margin-bottom:112px !important}}@media (min-width: 544px){.mt-sm-12{margin-top:128px !important}.mb-sm-12{margin-bottom:128px !important}.my-sm-12{margin-top:128px !important;margin-bottom:128px !important}}@media (min-width: 768px){.mt-md-7{margin-top:48px !important}.mb-md-7{margin-bottom:48px !important}.my-md-7{margin-top:48px !important;margin-bottom:48px !important}}@media (min-width: 768px){.mt-md-8{margin-top:64px !important}.mb-md-8{margin-bottom:64px !important}.my-md-8{margin-top:64px !important;margin-bottom:64px !important}}@media (min-width: 768px){.mt-md-9{margin-top:80px !important}.mb-md-9{margin-bottom:80px !important}.my-md-9{margin-top:80px !important;margin-bottom:80px !important}}@media (min-width: 768px){.mt-md-10{margin-top:96px !important}.mb-md-10{margin-bottom:96px !important}.my-md-10{margin-top:96px !important;margin-bottom:96px !important}}@media (min-width: 768px){.mt-md-11{margin-top:112px !important}.mb-md-11{margin-bottom:112px !important}.my-md-11{margin-top:112px !important;margin-bottom:112px !important}}@media (min-width: 768px){.mt-md-12{margin-top:128px !important}.mb-md-12{margin-bottom:128px !important}.my-md-12{margin-top:128px !important;margin-bottom:128px !important}}@media (min-width: 1012px){.mt-lg-7{margin-top:48px !important}.mb-lg-7{margin-bottom:48px !important}.my-lg-7{margin-top:48px !important;margin-bottom:48px !important}}@media (min-width: 1012px){.mt-lg-8{margin-top:64px !important}.mb-lg-8{margin-bottom:64px !important}.my-lg-8{margin-top:64px !important;margin-bottom:64px !important}}@media (min-width: 1012px){.mt-lg-9{margin-top:80px !important}.mb-lg-9{margin-bottom:80px !important}.my-lg-9{margin-top:80px !important;margin-bottom:80px !important}}@media (min-width: 1012px){.mt-lg-10{margin-top:96px !important}.mb-lg-10{margin-bottom:96px !important}.my-lg-10{margin-top:96px !important;margin-bottom:96px !important}}@media (min-width: 1012px){.mt-lg-11{margin-top:112px !important}.mb-lg-11{margin-bottom:112px !important}.my-lg-11{margin-top:112px !important;margin-bottom:112px !important}}@media (min-width: 1012px){.mt-lg-12{margin-top:128px !important}.mb-lg-12{margin-bottom:128px !important}.my-lg-12{margin-top:128px !important;margin-bottom:128px !important}}@media (min-width: 1280px){.mt-xl-7{margin-top:48px !important}.mb-xl-7{margin-bottom:48px !important}.my-xl-7{margin-top:48px !important;margin-bottom:48px !important}}@media (min-width: 1280px){.mt-xl-8{margin-top:64px !important}.mb-xl-8{margin-bottom:64px !important}.my-xl-8{margin-top:64px !important;margin-bottom:64px !important}}@media (min-width: 1280px){.mt-xl-9{margin-top:80px !important}.mb-xl-9{margin-bottom:80px !important}.my-xl-9{margin-top:80px !important;margin-bottom:80px !important}}@media (min-width: 1280px){.mt-xl-10{margin-top:96px !important}.mb-xl-10{margin-bottom:96px !important}.my-xl-10{margin-top:96px !important;margin-bottom:96px !important}}@media (min-width: 1280px){.mt-xl-11{margin-top:112px !important}.mb-xl-11{margin-bottom:112px !important}.my-xl-11{margin-top:112px !important;margin-bottom:112px !important}}@media (min-width: 1280px){.mt-xl-12{margin-top:128px !important}.mb-xl-12{margin-bottom:128px !important}.my-xl-12{margin-top:128px !important;margin-bottom:128px !important}}.pt-7{padding-top:48px !important}.pb-7{padding-bottom:48px !important}.py-7{padding-top:48px !important;padding-bottom:48px !important}.pt-8{padding-top:64px !important}.pb-8{padding-bottom:64px !important}.py-8{padding-top:64px !important;padding-bottom:64px !important}.pt-9{padding-top:80px !important}.pb-9{padding-bottom:80px !important}.py-9{padding-top:80px !important;padding-bottom:80px !important}.pt-10{padding-top:96px !important}.pb-10{padding-bottom:96px !important}.py-10{padding-top:96px !important;padding-bottom:96px !important}.pt-11{padding-top:112px !important}.pb-11{padding-bottom:112px !important}.py-11{padding-top:112px !important;padding-bottom:112px !important}.pt-12{padding-top:128px !important}.pb-12{padding-bottom:128px !important}.py-12{padding-top:128px !important;padding-bottom:128px !important}@media (min-width: 544px){.pt-sm-7{padding-top:48px !important}.pb-sm-7{padding-bottom:48px !important}.py-sm-7{padding-top:48px !important;padding-bottom:48px !important}}@media (min-width: 544px){.pt-sm-8{padding-top:64px !important}.pb-sm-8{padding-bottom:64px !important}.py-sm-8{padding-top:64px !important;padding-bottom:64px !important}}@media (min-width: 544px){.pt-sm-9{padding-top:80px !important}.pb-sm-9{padding-bottom:80px !important}.py-sm-9{padding-top:80px !important;padding-bottom:80px !important}}@media (min-width: 544px){.pt-sm-10{padding-top:96px !important}.pb-sm-10{padding-bottom:96px !important}.py-sm-10{padding-top:96px !important;padding-bottom:96px !important}}@media (min-width: 544px){.pt-sm-11{padding-top:112px !important}.pb-sm-11{padding-bottom:112px !important}.py-sm-11{padding-top:112px !important;padding-bottom:112px !important}}@media (min-width: 544px){.pt-sm-12{padding-top:128px !important}.pb-sm-12{padding-bottom:128px !important}.py-sm-12{padding-top:128px !important;padding-bottom:128px !important}}@media (min-width: 768px){.pt-md-7{padding-top:48px !important}.pb-md-7{padding-bottom:48px !important}.py-md-7{padding-top:48px !important;padding-bottom:48px !important}}@media (min-width: 768px){.pt-md-8{padding-top:64px !important}.pb-md-8{padding-bottom:64px !important}.py-md-8{padding-top:64px !important;padding-bottom:64px !important}}@media (min-width: 768px){.pt-md-9{padding-top:80px !important}.pb-md-9{padding-bottom:80px !important}.py-md-9{padding-top:80px !important;padding-bottom:80px !important}}@media (min-width: 768px){.pt-md-10{padding-top:96px !important}.pb-md-10{padding-bottom:96px !important}.py-md-10{padding-top:96px !important;padding-bottom:96px !important}}@media (min-width: 768px){.pt-md-11{padding-top:112px !important}.pb-md-11{padding-bottom:112px !important}.py-md-11{padding-top:112px !important;padding-bottom:112px !important}}@media (min-width: 768px){.pt-md-12{padding-top:128px !important}.pb-md-12{padding-bottom:128px !important}.py-md-12{padding-top:128px !important;padding-bottom:128px !important}}@media (min-width: 1012px){.pt-lg-7{padding-top:48px !important}.pb-lg-7{padding-bottom:48px !important}.py-lg-7{padding-top:48px !important;padding-bottom:48px !important}}@media (min-width: 1012px){.pt-lg-8{padding-top:64px !important}.pb-lg-8{padding-bottom:64px !important}.py-lg-8{padding-top:64px !important;padding-bottom:64px !important}}@media (min-width: 1012px){.pt-lg-9{padding-top:80px !important}.pb-lg-9{padding-bottom:80px !important}.py-lg-9{padding-top:80px !important;padding-bottom:80px !important}}@media (min-width: 1012px){.pt-lg-10{padding-top:96px !important}.pb-lg-10{padding-bottom:96px !important}.py-lg-10{padding-top:96px !important;padding-bottom:96px !important}}@media (min-width: 1012px){.pt-lg-11{padding-top:112px !important}.pb-lg-11{padding-bottom:112px !important}.py-lg-11{padding-top:112px !important;padding-bottom:112px !important}}@media (min-width: 1012px){.pt-lg-12{padding-top:128px !important}.pb-lg-12{padding-bottom:128px !important}.py-lg-12{padding-top:128px !important;padding-bottom:128px !important}}@media (min-width: 1280px){.pt-xl-7{padding-top:48px !important}.pb-xl-7{padding-bottom:48px !important}.py-xl-7{padding-top:48px !important;padding-bottom:48px !important}}@media (min-width: 1280px){.pt-xl-8{padding-top:64px !important}.pb-xl-8{padding-bottom:64px !important}.py-xl-8{padding-top:64px !important;padding-bottom:64px !important}}@media (min-width: 1280px){.pt-xl-9{padding-top:80px !important}.pb-xl-9{padding-bottom:80px !important}.py-xl-9{padding-top:80px !important;padding-bottom:80px !important}}@media (min-width: 1280px){.pt-xl-10{padding-top:96px !important}.pb-xl-10{padding-bottom:96px !important}.py-xl-10{padding-top:96px !important;padding-bottom:96px !important}}@media (min-width: 1280px){.pt-xl-11{padding-top:112px !important}.pb-xl-11{padding-bottom:112px !important}.py-xl-11{padding-top:112px !important;padding-bottom:112px !important}}@media (min-width: 1280px){.pt-xl-12{padding-top:128px !important}.pb-xl-12{padding-bottom:128px !important}.py-xl-12{padding-top:128px !important;padding-bottom:128px !important}}
+1
node_modules/primer-marketing/build/data.json
··· 1 + {"cssstats":{"size":17440,"gzipSize":2694,"humanizedSize":"17kB","humanizedGzipSize":"3kB","rules":{"total":262,"size":{"graph":[1,2,2,1,1,2,1,1,2,1,1,2,1,1,2,2,2,3,1,1,1,9,5,3,1,4,4,5,2,3,1,4,2,2,4,3,1,4,2,2,4,3,1,4,2,2,4,4,4,3,2,2,5,2,2,10,3,8,2,1,1,1,5,2,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2],"max":10,"average":1.6374045801526718},"selectorByRuleSizes":[{"selector":".jumbotron-shadow::after","declarations":10},{"selector":".pullquote","declarations":9},{"selector":".jumbotron-photo::before","declarations":8},{"selector":".data-table","declarations":5},{"selector":".jumbotron-supertron","declarations":5},{"selector":".btn-orange:disabled,.btn-orange.disabled","declarations":5},{"selector":".pullquote","declarations":5},{"selector":".btn-transparent:hover,.btn-transparent:active","declarations":4},{"selector":".btn-transparent","declarations":4},{"selector":".btn-outline-green:disabled,.btn-outline-green.disabled","declarations":4},{"selector":".btn-outline-green:hover,.btn-outline-green:active,.btn-outline-green.selected,[open]>.btn-outline-green","declarations":4},{"selector":".btn-outline-orange:disabled,.btn-outline-orange.disabled","declarations":4},{"selector":".btn-outline-orange:hover,.btn-outline-orange:active,.btn-outline-orange.selected,[open]>.btn-outline-orange","declarations":4},{"selector":".btn-outline-purple:disabled,.btn-outline-purple.disabled","declarations":4},{"selector":".btn-outline-purple:hover,.btn-outline-purple:active,.btn-outline-purple.selected,[open]>.btn-outline-purple","declarations":4},{"selector":".btn-orange:active,.btn-orange.selected,[open]>.btn-orange","declarations":4},{"selector":".btn-orange:hover,.btn-orange.hover","declarations":4},{"selector":".data-table td,.data-table th","declarations":3},{"selector":".jumbotron-photo","declarations":3},{"selector":".jumbotron","declarations":3},{"selector":".btn-outline-green","declarations":3},{"selector":".btn-outline-orange","declarations":3},{"selector":".btn-outline-purple","declarations":3},{"selector":".btn-orange","declarations":3},{"selector":".alt-lead","declarations":3},{"selector":".py-xl-12","declarations":2},{"selector":".py-xl-11","declarations":2},{"selector":".py-xl-10","declarations":2},{"selector":".py-xl-9","declarations":2},{"selector":".py-xl-8","declarations":2},{"selector":".py-xl-7","declarations":2},{"selector":".py-lg-12","declarations":2},{"selector":".py-lg-11","declarations":2},{"selector":".py-lg-10","declarations":2},{"selector":".py-lg-9","declarations":2},{"selector":".py-lg-8","declarations":2},{"selector":".py-lg-7","declarations":2},{"selector":".py-md-12","declarations":2},{"selector":".py-md-11","declarations":2},{"selector":".py-md-10","declarations":2},{"selector":".py-md-9","declarations":2},{"selector":".py-md-8","declarations":2},{"selector":".py-md-7","declarations":2},{"selector":".py-sm-12","declarations":2},{"selector":".py-sm-11","declarations":2},{"selector":".py-sm-10","declarations":2},{"selector":".py-sm-9","declarations":2},{"selector":".py-sm-8","declarations":2},{"selector":".py-sm-7","declarations":2},{"selector":".py-12","declarations":2},{"selector":".py-11","declarations":2},{"selector":".py-10","declarations":2},{"selector":".py-9","declarations":2},{"selector":".py-8","declarations":2},{"selector":".py-7","declarations":2},{"selector":".my-xl-12","declarations":2},{"selector":".my-xl-11","declarations":2},{"selector":".my-xl-10","declarations":2},{"selector":".my-xl-9","declarations":2},{"selector":".my-xl-8","declarations":2},{"selector":".my-xl-7","declarations":2},{"selector":".my-lg-12","declarations":2},{"selector":".my-lg-11","declarations":2},{"selector":".my-lg-10","declarations":2},{"selector":".my-lg-9","declarations":2},{"selector":".my-lg-8","declarations":2},{"selector":".my-lg-7","declarations":2},{"selector":".my-md-12","declarations":2},{"selector":".my-md-11","declarations":2},{"selector":".my-md-10","declarations":2},{"selector":".my-md-9","declarations":2},{"selector":".my-md-8","declarations":2},{"selector":".my-md-7","declarations":2},{"selector":".my-sm-12","declarations":2},{"selector":".my-sm-11","declarations":2},{"selector":".my-sm-10","declarations":2},{"selector":".my-sm-9","declarations":2},{"selector":".my-sm-8","declarations":2},{"selector":".my-sm-7","declarations":2},{"selector":".my-12","declarations":2},{"selector":".my-11","declarations":2},{"selector":".my-10","declarations":2},{"selector":".my-9","declarations":2},{"selector":".my-8","declarations":2},{"selector":".my-7","declarations":2},{"selector":".data-table th","declarations":2},{"selector":".page-section","declarations":2},{"selector":".jumbotron-minitron","declarations":2},{"selector":".jumbotron-minitron","declarations":2},{"selector":".jumbotron","declarations":2},{"selector":".jumbotron","declarations":2},{"selector":".btn-outline-green:focus","declarations":2},{"selector":".btn-outline-green:hover .Counter,.btn-outline-green:active .Counter,.btn-outline-green.selected .Counter,[open]>.btn-outline-green .Counter","declarations":2},{"selector":".btn-outline-orange:focus","declarations":2},{"selector":".btn-outline-orange:hover .Counter,.btn-outline-orange:active .Counter,.btn-outline-orange.selected .Counter,[open]>.btn-outline-orange .Counter","declarations":2},{"selector":".btn-outline-purple:focus","declarations":2},{"selector":".btn-outline-purple:hover .Counter,.btn-outline-purple:active .Counter,.btn-outline-purple.selected .Counter,[open]>.btn-outline-purple .Counter","declarations":2},{"selector":".btn-orange .Counter","declarations":2},{"selector":".alt-h6","declarations":2},{"selector":".alt-h5","declarations":2},{"selector":".alt-h4","declarations":2},{"selector":".alt-h3","declarations":2},{"selector":".alt-h2","declarations":2},{"selector":".alt-h1","declarations":2},{"selector":".alt-h0","declarations":2},{"selector":".alt-h0,.alt-h1,.alt-h2,.alt-h3,.alt-h4,.alt-h5,.alt-h6,.alt-lead","declarations":2},{"selector":".pb-xl-12","declarations":1},{"selector":".pt-xl-12","declarations":1},{"selector":".pb-xl-11","declarations":1},{"selector":".pt-xl-11","declarations":1},{"selector":".pb-xl-10","declarations":1},{"selector":".pt-xl-10","declarations":1},{"selector":".pb-xl-9","declarations":1},{"selector":".pt-xl-9","declarations":1},{"selector":".pb-xl-8","declarations":1},{"selector":".pt-xl-8","declarations":1},{"selector":".pb-xl-7","declarations":1},{"selector":".pt-xl-7","declarations":1},{"selector":".pb-lg-12","declarations":1},{"selector":".pt-lg-12","declarations":1},{"selector":".pb-lg-11","declarations":1},{"selector":".pt-lg-11","declarations":1},{"selector":".pb-lg-10","declarations":1},{"selector":".pt-lg-10","declarations":1},{"selector":".pb-lg-9","declarations":1},{"selector":".pt-lg-9","declarations":1},{"selector":".pb-lg-8","declarations":1},{"selector":".pt-lg-8","declarations":1},{"selector":".pb-lg-7","declarations":1},{"selector":".pt-lg-7","declarations":1},{"selector":".pb-md-12","declarations":1},{"selector":".pt-md-12","declarations":1},{"selector":".pb-md-11","declarations":1},{"selector":".pt-md-11","declarations":1},{"selector":".pb-md-10","declarations":1},{"selector":".pt-md-10","declarations":1},{"selector":".pb-md-9","declarations":1},{"selector":".pt-md-9","declarations":1},{"selector":".pb-md-8","declarations":1},{"selector":".pt-md-8","declarations":1},{"selector":".pb-md-7","declarations":1},{"selector":".pt-md-7","declarations":1},{"selector":".pb-sm-12","declarations":1},{"selector":".pt-sm-12","declarations":1},{"selector":".pb-sm-11","declarations":1},{"selector":".pt-sm-11","declarations":1},{"selector":".pb-sm-10","declarations":1},{"selector":".pt-sm-10","declarations":1},{"selector":".pb-sm-9","declarations":1},{"selector":".pt-sm-9","declarations":1},{"selector":".pb-sm-8","declarations":1},{"selector":".pt-sm-8","declarations":1},{"selector":".pb-sm-7","declarations":1},{"selector":".pt-sm-7","declarations":1},{"selector":".pb-12","declarations":1},{"selector":".pt-12","declarations":1},{"selector":".pb-11","declarations":1},{"selector":".pt-11","declarations":1},{"selector":".pb-10","declarations":1},{"selector":".pt-10","declarations":1},{"selector":".pb-9","declarations":1},{"selector":".pt-9","declarations":1},{"selector":".pb-8","declarations":1},{"selector":".pt-8","declarations":1},{"selector":".pb-7","declarations":1},{"selector":".pt-7","declarations":1},{"selector":".mb-xl-12","declarations":1},{"selector":".mt-xl-12","declarations":1},{"selector":".mb-xl-11","declarations":1},{"selector":".mt-xl-11","declarations":1},{"selector":".mb-xl-10","declarations":1},{"selector":".mt-xl-10","declarations":1},{"selector":".mb-xl-9","declarations":1},{"selector":".mt-xl-9","declarations":1},{"selector":".mb-xl-8","declarations":1},{"selector":".mt-xl-8","declarations":1},{"selector":".mb-xl-7","declarations":1},{"selector":".mt-xl-7","declarations":1},{"selector":".mb-lg-12","declarations":1},{"selector":".mt-lg-12","declarations":1},{"selector":".mb-lg-11","declarations":1},{"selector":".mt-lg-11","declarations":1},{"selector":".mb-lg-10","declarations":1},{"selector":".mt-lg-10","declarations":1},{"selector":".mb-lg-9","declarations":1},{"selector":".mt-lg-9","declarations":1},{"selector":".mb-lg-8","declarations":1},{"selector":".mt-lg-8","declarations":1},{"selector":".mb-lg-7","declarations":1},{"selector":".mt-lg-7","declarations":1},{"selector":".mb-md-12","declarations":1},{"selector":".mt-md-12","declarations":1},{"selector":".mb-md-11","declarations":1},{"selector":".mt-md-11","declarations":1},{"selector":".mb-md-10","declarations":1},{"selector":".mt-md-10","declarations":1},{"selector":".mb-md-9","declarations":1},{"selector":".mt-md-9","declarations":1},{"selector":".mb-md-8","declarations":1},{"selector":".mt-md-8","declarations":1},{"selector":".mb-md-7","declarations":1},{"selector":".mt-md-7","declarations":1},{"selector":".mb-sm-12","declarations":1},{"selector":".mt-sm-12","declarations":1},{"selector":".mb-sm-11","declarations":1},{"selector":".mt-sm-11","declarations":1},{"selector":".mb-sm-10","declarations":1},{"selector":".mt-sm-10","declarations":1},{"selector":".mb-sm-9","declarations":1},{"selector":".mt-sm-9","declarations":1},{"selector":".mb-sm-8","declarations":1},{"selector":".mt-sm-8","declarations":1},{"selector":".mb-sm-7","declarations":1},{"selector":".mt-sm-7","declarations":1},{"selector":".mb-12","declarations":1},{"selector":".mt-12","declarations":1},{"selector":".mb-11","declarations":1},{"selector":".mt-11","declarations":1},{"selector":".mb-10","declarations":1},{"selector":".mt-10","declarations":1},{"selector":".mb-9","declarations":1},{"selector":".mt-9","declarations":1},{"selector":".mb-8","declarations":1},{"selector":".mt-8","declarations":1},{"selector":".mb-7","declarations":1},{"selector":".mt-7","declarations":1},{"selector":".position-xl-fixed","declarations":1},{"selector":".position-xl-absolute","declarations":1},{"selector":".position-xl-relative","declarations":1},{"selector":".position-lg-fixed","declarations":1},{"selector":".position-lg-absolute","declarations":1},{"selector":".position-lg-relative","declarations":1},{"selector":".position-md-fixed","declarations":1},{"selector":".position-md-absolute","declarations":1},{"selector":".position-md-relative","declarations":1},{"selector":".position-sm-fixed","declarations":1},{"selector":".position-sm-absolute","declarations":1},{"selector":".position-sm-relative","declarations":1},{"selector":".border-white-fade","declarations":1},{"selector":".grayscale","declarations":1},{"selector":".data-table tbody tr:last-child th,.data-table tbody tr:last-child td","declarations":1},{"selector":".data-table tbody th,.data-table tbody td","declarations":1},{"selector":".data-table tbody th","declarations":1},{"selector":".page-section-jumplink:target","declarations":1},{"selector":".page-section-jumplink:target","declarations":1},{"selector":".page-section","declarations":1},{"selector":".btn-outline-green .Counter","declarations":1},{"selector":".btn-outline-orange .Counter","declarations":1},{"selector":".btn-outline-purple .Counter","declarations":1},{"selector":".btn-orange:focus,.btn-orange.focus","declarations":1},{"selector":".alt-text-small","declarations":1},{"selector":".alt-lead","declarations":1},{"selector":".alt-lead","declarations":1},{"selector":".alt-h3","declarations":1},{"selector":".alt-h3","declarations":1},{"selector":".alt-h2","declarations":1},{"selector":".alt-h2","declarations":1},{"selector":".alt-h1","declarations":1},{"selector":".alt-h1","declarations":1},{"selector":".alt-h0","declarations":1},{"selector":".alt-h0","declarations":1},{"selector":".alt-mono-font","declarations":1}]},"selectors":{"total":299,"type":8,"class":299,"id":0,"pseudoClass":28,"pseudoElement":2,"values":[".alt-mono-font",".alt-h0",".alt-h1",".alt-h2",".alt-h3",".alt-h4",".alt-h5",".alt-h6",".alt-lead",".alt-h0",".alt-h0",".alt-h0",".alt-h1",".alt-h1",".alt-h1",".alt-h2",".alt-h2",".alt-h2",".alt-h3",".alt-h3",".alt-h3",".alt-h4",".alt-h5",".alt-h6",".alt-lead",".alt-lead",".alt-lead",".alt-text-small",".pullquote",".pullquote",".btn-orange",".btn-orange:focus",".btn-orange.focus",".btn-orange:hover",".btn-orange.hover",".btn-orange:active",".btn-orange.selected","[open]>.btn-orange",".btn-orange:disabled",".btn-orange.disabled",".btn-orange .Counter",".btn-outline-purple",".btn-outline-purple .Counter",".btn-outline-purple:hover",".btn-outline-purple:active",".btn-outline-purple.selected","[open]>.btn-outline-purple",".btn-outline-purple:hover .Counter",".btn-outline-purple:active .Counter",".btn-outline-purple.selected .Counter","[open]>.btn-outline-purple .Counter",".btn-outline-purple:focus",".btn-outline-purple:disabled",".btn-outline-purple.disabled",".btn-outline-orange",".btn-outline-orange .Counter",".btn-outline-orange:hover",".btn-outline-orange:active",".btn-outline-orange.selected","[open]>.btn-outline-orange",".btn-outline-orange:hover .Counter",".btn-outline-orange:active .Counter",".btn-outline-orange.selected .Counter","[open]>.btn-outline-orange .Counter",".btn-outline-orange:focus",".btn-outline-orange:disabled",".btn-outline-orange.disabled",".btn-outline-green",".btn-outline-green .Counter",".btn-outline-green:hover",".btn-outline-green:active",".btn-outline-green.selected","[open]>.btn-outline-green",".btn-outline-green:hover .Counter",".btn-outline-green:active .Counter",".btn-outline-green.selected .Counter","[open]>.btn-outline-green .Counter",".btn-outline-green:focus",".btn-outline-green:disabled",".btn-outline-green.disabled",".btn-transparent",".btn-transparent:hover",".btn-transparent:active",".jumbotron",".jumbotron",".jumbotron",".jumbotron-supertron",".jumbotron-minitron",".jumbotron-minitron",".jumbotron-shadow::after",".jumbotron-photo",".jumbotron-photo::before",".page-section",".page-section",".page-section-jumplink:target",".page-section-jumplink:target",".data-table",".data-table th",".data-table td",".data-table th",".data-table tbody th",".data-table tbody th",".data-table tbody td",".data-table tbody tr:last-child th",".data-table tbody tr:last-child td",".grayscale",".border-white-fade",".position-sm-relative",".position-sm-absolute",".position-sm-fixed",".position-md-relative",".position-md-absolute",".position-md-fixed",".position-lg-relative",".position-lg-absolute",".position-lg-fixed",".position-xl-relative",".position-xl-absolute",".position-xl-fixed",".mt-7",".mb-7",".my-7",".mt-8",".mb-8",".my-8",".mt-9",".mb-9",".my-9",".mt-10",".mb-10",".my-10",".mt-11",".mb-11",".my-11",".mt-12",".mb-12",".my-12",".mt-sm-7",".mb-sm-7",".my-sm-7",".mt-sm-8",".mb-sm-8",".my-sm-8",".mt-sm-9",".mb-sm-9",".my-sm-9",".mt-sm-10",".mb-sm-10",".my-sm-10",".mt-sm-11",".mb-sm-11",".my-sm-11",".mt-sm-12",".mb-sm-12",".my-sm-12",".mt-md-7",".mb-md-7",".my-md-7",".mt-md-8",".mb-md-8",".my-md-8",".mt-md-9",".mb-md-9",".my-md-9",".mt-md-10",".mb-md-10",".my-md-10",".mt-md-11",".mb-md-11",".my-md-11",".mt-md-12",".mb-md-12",".my-md-12",".mt-lg-7",".mb-lg-7",".my-lg-7",".mt-lg-8",".mb-lg-8",".my-lg-8",".mt-lg-9",".mb-lg-9",".my-lg-9",".mt-lg-10",".mb-lg-10",".my-lg-10",".mt-lg-11",".mb-lg-11",".my-lg-11",".mt-lg-12",".mb-lg-12",".my-lg-12",".mt-xl-7",".mb-xl-7",".my-xl-7",".mt-xl-8",".mb-xl-8",".my-xl-8",".mt-xl-9",".mb-xl-9",".my-xl-9",".mt-xl-10",".mb-xl-10",".my-xl-10",".mt-xl-11",".mb-xl-11",".my-xl-11",".mt-xl-12",".mb-xl-12",".my-xl-12",".pt-7",".pb-7",".py-7",".pt-8",".pb-8",".py-8",".pt-9",".pb-9",".py-9",".pt-10",".pb-10",".py-10",".pt-11",".pb-11",".py-11",".pt-12",".pb-12",".py-12",".pt-sm-7",".pb-sm-7",".py-sm-7",".pt-sm-8",".pb-sm-8",".py-sm-8",".pt-sm-9",".pb-sm-9",".py-sm-9",".pt-sm-10",".pb-sm-10",".py-sm-10",".pt-sm-11",".pb-sm-11",".py-sm-11",".pt-sm-12",".pb-sm-12",".py-sm-12",".pt-md-7",".pb-md-7",".py-md-7",".pt-md-8",".pb-md-8",".py-md-8",".pt-md-9",".pb-md-9",".py-md-9",".pt-md-10",".pb-md-10",".py-md-10",".pt-md-11",".pb-md-11",".py-md-11",".pt-md-12",".pb-md-12",".py-md-12",".pt-lg-7",".pb-lg-7",".py-lg-7",".pt-lg-8",".pb-lg-8",".py-lg-8",".pt-lg-9",".pb-lg-9",".py-lg-9",".pt-lg-10",".pb-lg-10",".py-lg-10",".pt-lg-11",".pb-lg-11",".py-lg-11",".pt-lg-12",".pb-lg-12",".py-lg-12",".pt-xl-7",".pb-xl-7",".py-xl-7",".pt-xl-8",".pb-xl-8",".py-xl-8",".pt-xl-9",".pb-xl-9",".py-xl-9",".pt-xl-10",".pb-xl-10",".py-xl-10",".pt-xl-11",".pb-xl-11",".py-xl-11",".pt-xl-12",".pb-xl-12",".py-xl-12"],"specificity":{"max":30,"average":12.19732441471572}},"declarations":{"total":429,"unique":138,"properties":{"font-family":["\"SFMono-Regular\",Consolas,\"Liberation Mono\",Menlo,Courier,monospace","Roboto,-apple-system,BlinkMacSystemFont,\"Helvetica Neue\",\"Segoe UI\",\"Oxygen\",\"Ubuntu\",\"Cantarell\",\"Open Sans\",sans-serif","\"SFMono-Regular\",Consolas,\"Liberation Mono\",Menlo,Courier,monospace"],"-webkit-font-smoothing":["antialiased","antialiased"],"font-size":["48px","54px","72px","36px","48px","54px","28px","34px","38px","18px","20px","22px","16px","14px","12px","21px","24px","26px","14px","16px","18px"],"font-weight":["300","300","300","400","500","500","500","300","400"],"padding-top":["0","40px","60px","120px","80px","24px","32px","112px","80px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px"],"padding-bottom":["0","40px","60px","120px","80px","24px","32px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px"],"padding-left":["8px","12px"],"margin-bottom":["24px","32px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px"],"line-height":["1.4","1.5"],"color":["#586069","#fff","rgba(255,255,255,0.75)","#f46909","#6f42c1","#fff","#6f42c1","rgba(27,31,35,0.3)","#f66a0a","#fff","#f66a0a","rgba(27,31,35,0.3)","#28a745","#fff","#28a745","rgba(27,31,35,0.3)","#fff","#2f363d"],"border-left":["3px solid #e1e4e8"],"margin-left":["-15px"],"background-color":["#d25a08","#c85607","#c65e17","#e9ad83","#fff","#fff","rgba(27,31,35,0.07)","#6f42c1","#fff","#fff","#fff","rgba(27,31,35,0.07)","#f66a0a","#fff","#fff","#fff","rgba(27,31,35,0.07)","#28a745","#fff","#fff","transparent","#fff","transparent","#24292e","rgba(0,0,0,0.25)"],"background-image":["linear-gradient(-180deg, #f7802f 0%, #d25a08 90%)","linear-gradient(-180deg, #f77a25 0%, #c85607 90%)","none","none","none","none","none","none","none","none","none","none","linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.05))"],"box-shadow":["0 0 0 0.2em rgba(247,128,47,0.4)","inset 0 0.15em 0.3em rgba(27,31,35,0.15)","none","0 0 0 0.2em rgba(111,66,193,0.4)","none","0 0 0 0.2em rgba(246,106,10,0.4)","none","0 0 0 0.2em rgba(40,167,69,0.4)","none","inset 0 -1px 0 rgba(0,0,0,0.05)","0 1px 1px rgba(27,31,35,0.05)"],"background-position":["-.5em"],"border-color":["rgba(27,31,35,0.5)","rgba(27,31,35,0.5)","rgba(27,31,35,0.2)","#6f42c1","#6f42c1","rgba(27,31,35,0.15)","#f66a0a","#f66a0a","rgba(27,31,35,0.15)","#28a745","#28a745","rgba(27,31,35,0.15)","#fff","rgba(255,255,255,0.15)"],"border":["1px solid rgba(255,255,255,0.5)","1px #e1e4e8 solid"],"position":["relative","absolute","relative","absolute","relative","absolute","fixed","relative","absolute","fixed","relative","absolute","fixed","relative","absolute","fixed"],"height":["45vw","30px","100%"],"min-height":["590px"],"max-height":["55vh"],"bottom":["0","0"],"left":["0","0"],"width":["100%","100%","100%","25%"],"content":["\" \"","\"\""],"background-repeat":["repeat-x"],"background-size":["cover"],"display":["block"],"padding":["32px 0","56px 0","16px"],"margin-top":["0","16px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px"],"border-collapse":["collapse"],"text-align":["left"],"border-right":["1px #e1e4e8 solid"],"border-bottom":["1px #e1e4e8 solid","1px #e1e4e8 solid"],"border-bottom-color":["#e1e4e8"],"filter":["grayscale(100%)"]}},"mediaQueries":{"total":69,"unique":4,"values":["(min-width: 768px)","(min-width: 1012px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 768px)","(min-width: 544px)","(min-width: 1280px)","(min-width: 1012px)","(min-width: 544px)","(min-width: 768px)","(min-width: 768px)","(min-width: 544px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 1280px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)"],"contents":[{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h0","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h0"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["54px"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h0","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h0"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["72px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h1","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h1"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["48px"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h1","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h1"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["54px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h2","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h2"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["34px"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h2","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h2"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["38px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h3","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h3"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["20px"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h3","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h3"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["22px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-lead","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-lead"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["24px"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-lead","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-lead"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["26px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[5],"max":5,"average":5},"selectorByRuleSizes":[{"selector":".pullquote","declarations":5}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pullquote"],"specificity":{"max":10,"average":10}},"declarations":{"total":5,"unique":5,"properties":{"padding-left":["12px"],"margin-bottom":["32px"],"margin-left":["-15px"],"font-size":["18px"],"line-height":["1.5"]}}},{"value":"(min-width: 544px)","rules":{"total":1,"size":{"graph":[2],"max":2,"average":2},"selectorByRuleSizes":[{"selector":".jumbotron","declarations":2}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".jumbotron"],"specificity":{"max":10,"average":10}},"declarations":{"total":2,"unique":2,"properties":{"padding-top":["60px"],"padding-bottom":["60px"]}}},{"value":"(min-width: 1280px)","rules":{"total":1,"size":{"graph":[2],"max":2,"average":2},"selectorByRuleSizes":[{"selector":".jumbotron","declarations":2}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".jumbotron"],"specificity":{"max":10,"average":10}},"declarations":{"total":2,"unique":2,"properties":{"padding-top":["120px"],"padding-bottom":["120px"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[5],"max":5,"average":5},"selectorByRuleSizes":[{"selector":".jumbotron-supertron","declarations":5}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".jumbotron-supertron"],"specificity":{"max":10,"average":10}},"declarations":{"total":5,"unique":5,"properties":{"height":["45vw"],"min-height":["590px"],"max-height":["55vh"],"padding-top":["80px"],"padding-bottom":["80px"]}}},{"value":"(min-width: 544px)","rules":{"total":1,"size":{"graph":[2],"max":2,"average":2},"selectorByRuleSizes":[{"selector":".jumbotron-minitron","declarations":2}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".jumbotron-minitron"],"specificity":{"max":10,"average":10}},"declarations":{"total":2,"unique":2,"properties":{"padding-top":["32px"],"padding-bottom":["32px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".page-section","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".page-section"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"padding":["56px 0"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".page-section-jumplink:target","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":1,"pseudoElement":0,"values":[".page-section-jumplink:target"],"specificity":{"max":20,"average":20}},"declarations":{"total":1,"unique":1,"properties":{"padding-top":["80px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":",.position-sm-fixed","declarations":1},{"selector":",.position-sm-absolute","declarations":1},{"selector":".position-sm-relative","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".position-sm-relative",".position-sm-absolute",".position-sm-fixed"],"specificity":{"max":10,"average":10}},"declarations":{"total":3,"unique":3,"properties":{"position":["relative","absolute","fixed"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":",.position-md-fixed","declarations":1},{"selector":",.position-md-absolute","declarations":1},{"selector":".position-md-relative","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".position-md-relative",".position-md-absolute",".position-md-fixed"],"specificity":{"max":10,"average":10}},"declarations":{"total":3,"unique":3,"properties":{"position":["relative","absolute","fixed"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":",.position-lg-fixed","declarations":1},{"selector":",.position-lg-absolute","declarations":1},{"selector":".position-lg-relative","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".position-lg-relative",".position-lg-absolute",".position-lg-fixed"],"specificity":{"max":10,"average":10}},"declarations":{"total":3,"unique":3,"properties":{"position":["relative","absolute","fixed"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":",.position-xl-fixed","declarations":1},{"selector":",.position-xl-absolute","declarations":1},{"selector":".position-xl-relative","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".position-xl-relative",".position-xl-absolute",".position-xl-fixed"],"specificity":{"max":10,"average":10}},"declarations":{"total":3,"unique":3,"properties":{"position":["relative","absolute","fixed"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-sm-7","declarations":2},{"selector":",.mb-sm-7","declarations":1},{"selector":".mt-sm-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-sm-7",".mb-sm-7",".my-sm-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["48px","48px"],"margin-bottom":["48px","48px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-sm-8","declarations":2},{"selector":",.mb-sm-8","declarations":1},{"selector":".mt-sm-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-sm-8",".mb-sm-8",".my-sm-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["64px","64px"],"margin-bottom":["64px","64px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-sm-9","declarations":2},{"selector":",.mb-sm-9","declarations":1},{"selector":".mt-sm-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-sm-9",".mb-sm-9",".my-sm-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["80px","80px"],"margin-bottom":["80px","80px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-sm-10","declarations":2},{"selector":",.mb-sm-10","declarations":1},{"selector":".mt-sm-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-sm-10",".mb-sm-10",".my-sm-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["96px","96px"],"margin-bottom":["96px","96px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-sm-11","declarations":2},{"selector":",.mb-sm-11","declarations":1},{"selector":".mt-sm-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-sm-11",".mb-sm-11",".my-sm-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["112px","112px"],"margin-bottom":["112px","112px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-sm-12","declarations":2},{"selector":",.mb-sm-12","declarations":1},{"selector":".mt-sm-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-sm-12",".mb-sm-12",".my-sm-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["128px","128px"],"margin-bottom":["128px","128px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-md-7","declarations":2},{"selector":",.mb-md-7","declarations":1},{"selector":".mt-md-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-md-7",".mb-md-7",".my-md-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["48px","48px"],"margin-bottom":["48px","48px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-md-8","declarations":2},{"selector":",.mb-md-8","declarations":1},{"selector":".mt-md-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-md-8",".mb-md-8",".my-md-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["64px","64px"],"margin-bottom":["64px","64px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-md-9","declarations":2},{"selector":",.mb-md-9","declarations":1},{"selector":".mt-md-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-md-9",".mb-md-9",".my-md-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["80px","80px"],"margin-bottom":["80px","80px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-md-10","declarations":2},{"selector":",.mb-md-10","declarations":1},{"selector":".mt-md-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-md-10",".mb-md-10",".my-md-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["96px","96px"],"margin-bottom":["96px","96px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-md-11","declarations":2},{"selector":",.mb-md-11","declarations":1},{"selector":".mt-md-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-md-11",".mb-md-11",".my-md-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["112px","112px"],"margin-bottom":["112px","112px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-md-12","declarations":2},{"selector":",.mb-md-12","declarations":1},{"selector":".mt-md-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-md-12",".mb-md-12",".my-md-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["128px","128px"],"margin-bottom":["128px","128px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-lg-7","declarations":2},{"selector":",.mb-lg-7","declarations":1},{"selector":".mt-lg-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-lg-7",".mb-lg-7",".my-lg-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["48px","48px"],"margin-bottom":["48px","48px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-lg-8","declarations":2},{"selector":",.mb-lg-8","declarations":1},{"selector":".mt-lg-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-lg-8",".mb-lg-8",".my-lg-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["64px","64px"],"margin-bottom":["64px","64px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-lg-9","declarations":2},{"selector":",.mb-lg-9","declarations":1},{"selector":".mt-lg-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-lg-9",".mb-lg-9",".my-lg-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["80px","80px"],"margin-bottom":["80px","80px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-lg-10","declarations":2},{"selector":",.mb-lg-10","declarations":1},{"selector":".mt-lg-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-lg-10",".mb-lg-10",".my-lg-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["96px","96px"],"margin-bottom":["96px","96px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-lg-11","declarations":2},{"selector":",.mb-lg-11","declarations":1},{"selector":".mt-lg-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-lg-11",".mb-lg-11",".my-lg-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["112px","112px"],"margin-bottom":["112px","112px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-lg-12","declarations":2},{"selector":",.mb-lg-12","declarations":1},{"selector":".mt-lg-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-lg-12",".mb-lg-12",".my-lg-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["128px","128px"],"margin-bottom":["128px","128px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-xl-7","declarations":2},{"selector":",.mb-xl-7","declarations":1},{"selector":".mt-xl-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-xl-7",".mb-xl-7",".my-xl-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["48px","48px"],"margin-bottom":["48px","48px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-xl-8","declarations":2},{"selector":",.mb-xl-8","declarations":1},{"selector":".mt-xl-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-xl-8",".mb-xl-8",".my-xl-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["64px","64px"],"margin-bottom":["64px","64px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-xl-9","declarations":2},{"selector":",.mb-xl-9","declarations":1},{"selector":".mt-xl-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-xl-9",".mb-xl-9",".my-xl-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["80px","80px"],"margin-bottom":["80px","80px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-xl-10","declarations":2},{"selector":",.mb-xl-10","declarations":1},{"selector":".mt-xl-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-xl-10",".mb-xl-10",".my-xl-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["96px","96px"],"margin-bottom":["96px","96px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-xl-11","declarations":2},{"selector":",.mb-xl-11","declarations":1},{"selector":".mt-xl-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-xl-11",".mb-xl-11",".my-xl-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["112px","112px"],"margin-bottom":["112px","112px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-xl-12","declarations":2},{"selector":",.mb-xl-12","declarations":1},{"selector":".mt-xl-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-xl-12",".mb-xl-12",".my-xl-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["128px","128px"],"margin-bottom":["128px","128px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-sm-7","declarations":2},{"selector":",.pb-sm-7","declarations":1},{"selector":".pt-sm-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-sm-7",".pb-sm-7",".py-sm-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["48px","48px"],"padding-bottom":["48px","48px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-sm-8","declarations":2},{"selector":",.pb-sm-8","declarations":1},{"selector":".pt-sm-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-sm-8",".pb-sm-8",".py-sm-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["64px","64px"],"padding-bottom":["64px","64px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-sm-9","declarations":2},{"selector":",.pb-sm-9","declarations":1},{"selector":".pt-sm-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-sm-9",".pb-sm-9",".py-sm-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["80px","80px"],"padding-bottom":["80px","80px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-sm-10","declarations":2},{"selector":",.pb-sm-10","declarations":1},{"selector":".pt-sm-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-sm-10",".pb-sm-10",".py-sm-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["96px","96px"],"padding-bottom":["96px","96px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-sm-11","declarations":2},{"selector":",.pb-sm-11","declarations":1},{"selector":".pt-sm-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-sm-11",".pb-sm-11",".py-sm-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["112px","112px"],"padding-bottom":["112px","112px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-sm-12","declarations":2},{"selector":",.pb-sm-12","declarations":1},{"selector":".pt-sm-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-sm-12",".pb-sm-12",".py-sm-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["128px","128px"],"padding-bottom":["128px","128px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-md-7","declarations":2},{"selector":",.pb-md-7","declarations":1},{"selector":".pt-md-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-md-7",".pb-md-7",".py-md-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["48px","48px"],"padding-bottom":["48px","48px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-md-8","declarations":2},{"selector":",.pb-md-8","declarations":1},{"selector":".pt-md-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-md-8",".pb-md-8",".py-md-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["64px","64px"],"padding-bottom":["64px","64px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-md-9","declarations":2},{"selector":",.pb-md-9","declarations":1},{"selector":".pt-md-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-md-9",".pb-md-9",".py-md-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["80px","80px"],"padding-bottom":["80px","80px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-md-10","declarations":2},{"selector":",.pb-md-10","declarations":1},{"selector":".pt-md-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-md-10",".pb-md-10",".py-md-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["96px","96px"],"padding-bottom":["96px","96px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-md-11","declarations":2},{"selector":",.pb-md-11","declarations":1},{"selector":".pt-md-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-md-11",".pb-md-11",".py-md-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["112px","112px"],"padding-bottom":["112px","112px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-md-12","declarations":2},{"selector":",.pb-md-12","declarations":1},{"selector":".pt-md-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-md-12",".pb-md-12",".py-md-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["128px","128px"],"padding-bottom":["128px","128px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-lg-7","declarations":2},{"selector":",.pb-lg-7","declarations":1},{"selector":".pt-lg-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-lg-7",".pb-lg-7",".py-lg-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["48px","48px"],"padding-bottom":["48px","48px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-lg-8","declarations":2},{"selector":",.pb-lg-8","declarations":1},{"selector":".pt-lg-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-lg-8",".pb-lg-8",".py-lg-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["64px","64px"],"padding-bottom":["64px","64px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-lg-9","declarations":2},{"selector":",.pb-lg-9","declarations":1},{"selector":".pt-lg-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-lg-9",".pb-lg-9",".py-lg-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["80px","80px"],"padding-bottom":["80px","80px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-lg-10","declarations":2},{"selector":",.pb-lg-10","declarations":1},{"selector":".pt-lg-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-lg-10",".pb-lg-10",".py-lg-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["96px","96px"],"padding-bottom":["96px","96px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-lg-11","declarations":2},{"selector":",.pb-lg-11","declarations":1},{"selector":".pt-lg-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-lg-11",".pb-lg-11",".py-lg-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["112px","112px"],"padding-bottom":["112px","112px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-lg-12","declarations":2},{"selector":",.pb-lg-12","declarations":1},{"selector":".pt-lg-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-lg-12",".pb-lg-12",".py-lg-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["128px","128px"],"padding-bottom":["128px","128px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-xl-7","declarations":2},{"selector":",.pb-xl-7","declarations":1},{"selector":".pt-xl-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-xl-7",".pb-xl-7",".py-xl-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["48px","48px"],"padding-bottom":["48px","48px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-xl-8","declarations":2},{"selector":",.pb-xl-8","declarations":1},{"selector":".pt-xl-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-xl-8",".pb-xl-8",".py-xl-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["64px","64px"],"padding-bottom":["64px","64px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-xl-9","declarations":2},{"selector":",.pb-xl-9","declarations":1},{"selector":".pt-xl-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-xl-9",".pb-xl-9",".py-xl-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["80px","80px"],"padding-bottom":["80px","80px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-xl-10","declarations":2},{"selector":",.pb-xl-10","declarations":1},{"selector":".pt-xl-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-xl-10",".pb-xl-10",".py-xl-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["96px","96px"],"padding-bottom":["96px","96px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-xl-11","declarations":2},{"selector":",.pb-xl-11","declarations":1},{"selector":".pt-xl-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-xl-11",".pb-xl-11",".py-xl-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["112px","112px"],"padding-bottom":["112px","112px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-xl-12","declarations":2},{"selector":",.pb-xl-12","declarations":1},{"selector":".pt-xl-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-xl-12",".pb-xl-12",".py-xl-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["128px","128px"],"padding-bottom":["128px","128px"]}}}]}}}
+1
node_modules/primer-marketing/build/index.js
··· 1 + module.exports = {"cssstats":{"size":17440,"gzipSize":2694,"humanizedSize":"17kB","humanizedGzipSize":"3kB","rules":{"total":262,"size":{"graph":[1,2,2,1,1,2,1,1,2,1,1,2,1,1,2,2,2,3,1,1,1,9,5,3,1,4,4,5,2,3,1,4,2,2,4,3,1,4,2,2,4,3,1,4,2,2,4,4,4,3,2,2,5,2,2,10,3,8,2,1,1,1,5,2,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2,1,1,2],"max":10,"average":1.6374045801526718},"selectorByRuleSizes":[{"selector":".jumbotron-shadow::after","declarations":10},{"selector":".pullquote","declarations":9},{"selector":".jumbotron-photo::before","declarations":8},{"selector":".data-table","declarations":5},{"selector":".jumbotron-supertron","declarations":5},{"selector":".btn-orange:disabled,.btn-orange.disabled","declarations":5},{"selector":".pullquote","declarations":5},{"selector":".btn-transparent:hover,.btn-transparent:active","declarations":4},{"selector":".btn-transparent","declarations":4},{"selector":".btn-outline-green:disabled,.btn-outline-green.disabled","declarations":4},{"selector":".btn-outline-green:hover,.btn-outline-green:active,.btn-outline-green.selected,[open]>.btn-outline-green","declarations":4},{"selector":".btn-outline-orange:disabled,.btn-outline-orange.disabled","declarations":4},{"selector":".btn-outline-orange:hover,.btn-outline-orange:active,.btn-outline-orange.selected,[open]>.btn-outline-orange","declarations":4},{"selector":".btn-outline-purple:disabled,.btn-outline-purple.disabled","declarations":4},{"selector":".btn-outline-purple:hover,.btn-outline-purple:active,.btn-outline-purple.selected,[open]>.btn-outline-purple","declarations":4},{"selector":".btn-orange:active,.btn-orange.selected,[open]>.btn-orange","declarations":4},{"selector":".btn-orange:hover,.btn-orange.hover","declarations":4},{"selector":".data-table td,.data-table th","declarations":3},{"selector":".jumbotron-photo","declarations":3},{"selector":".jumbotron","declarations":3},{"selector":".btn-outline-green","declarations":3},{"selector":".btn-outline-orange","declarations":3},{"selector":".btn-outline-purple","declarations":3},{"selector":".btn-orange","declarations":3},{"selector":".alt-lead","declarations":3},{"selector":".py-xl-12","declarations":2},{"selector":".py-xl-11","declarations":2},{"selector":".py-xl-10","declarations":2},{"selector":".py-xl-9","declarations":2},{"selector":".py-xl-8","declarations":2},{"selector":".py-xl-7","declarations":2},{"selector":".py-lg-12","declarations":2},{"selector":".py-lg-11","declarations":2},{"selector":".py-lg-10","declarations":2},{"selector":".py-lg-9","declarations":2},{"selector":".py-lg-8","declarations":2},{"selector":".py-lg-7","declarations":2},{"selector":".py-md-12","declarations":2},{"selector":".py-md-11","declarations":2},{"selector":".py-md-10","declarations":2},{"selector":".py-md-9","declarations":2},{"selector":".py-md-8","declarations":2},{"selector":".py-md-7","declarations":2},{"selector":".py-sm-12","declarations":2},{"selector":".py-sm-11","declarations":2},{"selector":".py-sm-10","declarations":2},{"selector":".py-sm-9","declarations":2},{"selector":".py-sm-8","declarations":2},{"selector":".py-sm-7","declarations":2},{"selector":".py-12","declarations":2},{"selector":".py-11","declarations":2},{"selector":".py-10","declarations":2},{"selector":".py-9","declarations":2},{"selector":".py-8","declarations":2},{"selector":".py-7","declarations":2},{"selector":".my-xl-12","declarations":2},{"selector":".my-xl-11","declarations":2},{"selector":".my-xl-10","declarations":2},{"selector":".my-xl-9","declarations":2},{"selector":".my-xl-8","declarations":2},{"selector":".my-xl-7","declarations":2},{"selector":".my-lg-12","declarations":2},{"selector":".my-lg-11","declarations":2},{"selector":".my-lg-10","declarations":2},{"selector":".my-lg-9","declarations":2},{"selector":".my-lg-8","declarations":2},{"selector":".my-lg-7","declarations":2},{"selector":".my-md-12","declarations":2},{"selector":".my-md-11","declarations":2},{"selector":".my-md-10","declarations":2},{"selector":".my-md-9","declarations":2},{"selector":".my-md-8","declarations":2},{"selector":".my-md-7","declarations":2},{"selector":".my-sm-12","declarations":2},{"selector":".my-sm-11","declarations":2},{"selector":".my-sm-10","declarations":2},{"selector":".my-sm-9","declarations":2},{"selector":".my-sm-8","declarations":2},{"selector":".my-sm-7","declarations":2},{"selector":".my-12","declarations":2},{"selector":".my-11","declarations":2},{"selector":".my-10","declarations":2},{"selector":".my-9","declarations":2},{"selector":".my-8","declarations":2},{"selector":".my-7","declarations":2},{"selector":".data-table th","declarations":2},{"selector":".page-section","declarations":2},{"selector":".jumbotron-minitron","declarations":2},{"selector":".jumbotron-minitron","declarations":2},{"selector":".jumbotron","declarations":2},{"selector":".jumbotron","declarations":2},{"selector":".btn-outline-green:focus","declarations":2},{"selector":".btn-outline-green:hover .Counter,.btn-outline-green:active .Counter,.btn-outline-green.selected .Counter,[open]>.btn-outline-green .Counter","declarations":2},{"selector":".btn-outline-orange:focus","declarations":2},{"selector":".btn-outline-orange:hover .Counter,.btn-outline-orange:active .Counter,.btn-outline-orange.selected .Counter,[open]>.btn-outline-orange .Counter","declarations":2},{"selector":".btn-outline-purple:focus","declarations":2},{"selector":".btn-outline-purple:hover .Counter,.btn-outline-purple:active .Counter,.btn-outline-purple.selected .Counter,[open]>.btn-outline-purple .Counter","declarations":2},{"selector":".btn-orange .Counter","declarations":2},{"selector":".alt-h6","declarations":2},{"selector":".alt-h5","declarations":2},{"selector":".alt-h4","declarations":2},{"selector":".alt-h3","declarations":2},{"selector":".alt-h2","declarations":2},{"selector":".alt-h1","declarations":2},{"selector":".alt-h0","declarations":2},{"selector":".alt-h0,.alt-h1,.alt-h2,.alt-h3,.alt-h4,.alt-h5,.alt-h6,.alt-lead","declarations":2},{"selector":".pb-xl-12","declarations":1},{"selector":".pt-xl-12","declarations":1},{"selector":".pb-xl-11","declarations":1},{"selector":".pt-xl-11","declarations":1},{"selector":".pb-xl-10","declarations":1},{"selector":".pt-xl-10","declarations":1},{"selector":".pb-xl-9","declarations":1},{"selector":".pt-xl-9","declarations":1},{"selector":".pb-xl-8","declarations":1},{"selector":".pt-xl-8","declarations":1},{"selector":".pb-xl-7","declarations":1},{"selector":".pt-xl-7","declarations":1},{"selector":".pb-lg-12","declarations":1},{"selector":".pt-lg-12","declarations":1},{"selector":".pb-lg-11","declarations":1},{"selector":".pt-lg-11","declarations":1},{"selector":".pb-lg-10","declarations":1},{"selector":".pt-lg-10","declarations":1},{"selector":".pb-lg-9","declarations":1},{"selector":".pt-lg-9","declarations":1},{"selector":".pb-lg-8","declarations":1},{"selector":".pt-lg-8","declarations":1},{"selector":".pb-lg-7","declarations":1},{"selector":".pt-lg-7","declarations":1},{"selector":".pb-md-12","declarations":1},{"selector":".pt-md-12","declarations":1},{"selector":".pb-md-11","declarations":1},{"selector":".pt-md-11","declarations":1},{"selector":".pb-md-10","declarations":1},{"selector":".pt-md-10","declarations":1},{"selector":".pb-md-9","declarations":1},{"selector":".pt-md-9","declarations":1},{"selector":".pb-md-8","declarations":1},{"selector":".pt-md-8","declarations":1},{"selector":".pb-md-7","declarations":1},{"selector":".pt-md-7","declarations":1},{"selector":".pb-sm-12","declarations":1},{"selector":".pt-sm-12","declarations":1},{"selector":".pb-sm-11","declarations":1},{"selector":".pt-sm-11","declarations":1},{"selector":".pb-sm-10","declarations":1},{"selector":".pt-sm-10","declarations":1},{"selector":".pb-sm-9","declarations":1},{"selector":".pt-sm-9","declarations":1},{"selector":".pb-sm-8","declarations":1},{"selector":".pt-sm-8","declarations":1},{"selector":".pb-sm-7","declarations":1},{"selector":".pt-sm-7","declarations":1},{"selector":".pb-12","declarations":1},{"selector":".pt-12","declarations":1},{"selector":".pb-11","declarations":1},{"selector":".pt-11","declarations":1},{"selector":".pb-10","declarations":1},{"selector":".pt-10","declarations":1},{"selector":".pb-9","declarations":1},{"selector":".pt-9","declarations":1},{"selector":".pb-8","declarations":1},{"selector":".pt-8","declarations":1},{"selector":".pb-7","declarations":1},{"selector":".pt-7","declarations":1},{"selector":".mb-xl-12","declarations":1},{"selector":".mt-xl-12","declarations":1},{"selector":".mb-xl-11","declarations":1},{"selector":".mt-xl-11","declarations":1},{"selector":".mb-xl-10","declarations":1},{"selector":".mt-xl-10","declarations":1},{"selector":".mb-xl-9","declarations":1},{"selector":".mt-xl-9","declarations":1},{"selector":".mb-xl-8","declarations":1},{"selector":".mt-xl-8","declarations":1},{"selector":".mb-xl-7","declarations":1},{"selector":".mt-xl-7","declarations":1},{"selector":".mb-lg-12","declarations":1},{"selector":".mt-lg-12","declarations":1},{"selector":".mb-lg-11","declarations":1},{"selector":".mt-lg-11","declarations":1},{"selector":".mb-lg-10","declarations":1},{"selector":".mt-lg-10","declarations":1},{"selector":".mb-lg-9","declarations":1},{"selector":".mt-lg-9","declarations":1},{"selector":".mb-lg-8","declarations":1},{"selector":".mt-lg-8","declarations":1},{"selector":".mb-lg-7","declarations":1},{"selector":".mt-lg-7","declarations":1},{"selector":".mb-md-12","declarations":1},{"selector":".mt-md-12","declarations":1},{"selector":".mb-md-11","declarations":1},{"selector":".mt-md-11","declarations":1},{"selector":".mb-md-10","declarations":1},{"selector":".mt-md-10","declarations":1},{"selector":".mb-md-9","declarations":1},{"selector":".mt-md-9","declarations":1},{"selector":".mb-md-8","declarations":1},{"selector":".mt-md-8","declarations":1},{"selector":".mb-md-7","declarations":1},{"selector":".mt-md-7","declarations":1},{"selector":".mb-sm-12","declarations":1},{"selector":".mt-sm-12","declarations":1},{"selector":".mb-sm-11","declarations":1},{"selector":".mt-sm-11","declarations":1},{"selector":".mb-sm-10","declarations":1},{"selector":".mt-sm-10","declarations":1},{"selector":".mb-sm-9","declarations":1},{"selector":".mt-sm-9","declarations":1},{"selector":".mb-sm-8","declarations":1},{"selector":".mt-sm-8","declarations":1},{"selector":".mb-sm-7","declarations":1},{"selector":".mt-sm-7","declarations":1},{"selector":".mb-12","declarations":1},{"selector":".mt-12","declarations":1},{"selector":".mb-11","declarations":1},{"selector":".mt-11","declarations":1},{"selector":".mb-10","declarations":1},{"selector":".mt-10","declarations":1},{"selector":".mb-9","declarations":1},{"selector":".mt-9","declarations":1},{"selector":".mb-8","declarations":1},{"selector":".mt-8","declarations":1},{"selector":".mb-7","declarations":1},{"selector":".mt-7","declarations":1},{"selector":".position-xl-fixed","declarations":1},{"selector":".position-xl-absolute","declarations":1},{"selector":".position-xl-relative","declarations":1},{"selector":".position-lg-fixed","declarations":1},{"selector":".position-lg-absolute","declarations":1},{"selector":".position-lg-relative","declarations":1},{"selector":".position-md-fixed","declarations":1},{"selector":".position-md-absolute","declarations":1},{"selector":".position-md-relative","declarations":1},{"selector":".position-sm-fixed","declarations":1},{"selector":".position-sm-absolute","declarations":1},{"selector":".position-sm-relative","declarations":1},{"selector":".border-white-fade","declarations":1},{"selector":".grayscale","declarations":1},{"selector":".data-table tbody tr:last-child th,.data-table tbody tr:last-child td","declarations":1},{"selector":".data-table tbody th,.data-table tbody td","declarations":1},{"selector":".data-table tbody th","declarations":1},{"selector":".page-section-jumplink:target","declarations":1},{"selector":".page-section-jumplink:target","declarations":1},{"selector":".page-section","declarations":1},{"selector":".btn-outline-green .Counter","declarations":1},{"selector":".btn-outline-orange .Counter","declarations":1},{"selector":".btn-outline-purple .Counter","declarations":1},{"selector":".btn-orange:focus,.btn-orange.focus","declarations":1},{"selector":".alt-text-small","declarations":1},{"selector":".alt-lead","declarations":1},{"selector":".alt-lead","declarations":1},{"selector":".alt-h3","declarations":1},{"selector":".alt-h3","declarations":1},{"selector":".alt-h2","declarations":1},{"selector":".alt-h2","declarations":1},{"selector":".alt-h1","declarations":1},{"selector":".alt-h1","declarations":1},{"selector":".alt-h0","declarations":1},{"selector":".alt-h0","declarations":1},{"selector":".alt-mono-font","declarations":1}]},"selectors":{"total":299,"type":8,"class":299,"id":0,"pseudoClass":28,"pseudoElement":2,"values":[".alt-mono-font",".alt-h0",".alt-h1",".alt-h2",".alt-h3",".alt-h4",".alt-h5",".alt-h6",".alt-lead",".alt-h0",".alt-h0",".alt-h0",".alt-h1",".alt-h1",".alt-h1",".alt-h2",".alt-h2",".alt-h2",".alt-h3",".alt-h3",".alt-h3",".alt-h4",".alt-h5",".alt-h6",".alt-lead",".alt-lead",".alt-lead",".alt-text-small",".pullquote",".pullquote",".btn-orange",".btn-orange:focus",".btn-orange.focus",".btn-orange:hover",".btn-orange.hover",".btn-orange:active",".btn-orange.selected","[open]>.btn-orange",".btn-orange:disabled",".btn-orange.disabled",".btn-orange .Counter",".btn-outline-purple",".btn-outline-purple .Counter",".btn-outline-purple:hover",".btn-outline-purple:active",".btn-outline-purple.selected","[open]>.btn-outline-purple",".btn-outline-purple:hover .Counter",".btn-outline-purple:active .Counter",".btn-outline-purple.selected .Counter","[open]>.btn-outline-purple .Counter",".btn-outline-purple:focus",".btn-outline-purple:disabled",".btn-outline-purple.disabled",".btn-outline-orange",".btn-outline-orange .Counter",".btn-outline-orange:hover",".btn-outline-orange:active",".btn-outline-orange.selected","[open]>.btn-outline-orange",".btn-outline-orange:hover .Counter",".btn-outline-orange:active .Counter",".btn-outline-orange.selected .Counter","[open]>.btn-outline-orange .Counter",".btn-outline-orange:focus",".btn-outline-orange:disabled",".btn-outline-orange.disabled",".btn-outline-green",".btn-outline-green .Counter",".btn-outline-green:hover",".btn-outline-green:active",".btn-outline-green.selected","[open]>.btn-outline-green",".btn-outline-green:hover .Counter",".btn-outline-green:active .Counter",".btn-outline-green.selected .Counter","[open]>.btn-outline-green .Counter",".btn-outline-green:focus",".btn-outline-green:disabled",".btn-outline-green.disabled",".btn-transparent",".btn-transparent:hover",".btn-transparent:active",".jumbotron",".jumbotron",".jumbotron",".jumbotron-supertron",".jumbotron-minitron",".jumbotron-minitron",".jumbotron-shadow::after",".jumbotron-photo",".jumbotron-photo::before",".page-section",".page-section",".page-section-jumplink:target",".page-section-jumplink:target",".data-table",".data-table th",".data-table td",".data-table th",".data-table tbody th",".data-table tbody th",".data-table tbody td",".data-table tbody tr:last-child th",".data-table tbody tr:last-child td",".grayscale",".border-white-fade",".position-sm-relative",".position-sm-absolute",".position-sm-fixed",".position-md-relative",".position-md-absolute",".position-md-fixed",".position-lg-relative",".position-lg-absolute",".position-lg-fixed",".position-xl-relative",".position-xl-absolute",".position-xl-fixed",".mt-7",".mb-7",".my-7",".mt-8",".mb-8",".my-8",".mt-9",".mb-9",".my-9",".mt-10",".mb-10",".my-10",".mt-11",".mb-11",".my-11",".mt-12",".mb-12",".my-12",".mt-sm-7",".mb-sm-7",".my-sm-7",".mt-sm-8",".mb-sm-8",".my-sm-8",".mt-sm-9",".mb-sm-9",".my-sm-9",".mt-sm-10",".mb-sm-10",".my-sm-10",".mt-sm-11",".mb-sm-11",".my-sm-11",".mt-sm-12",".mb-sm-12",".my-sm-12",".mt-md-7",".mb-md-7",".my-md-7",".mt-md-8",".mb-md-8",".my-md-8",".mt-md-9",".mb-md-9",".my-md-9",".mt-md-10",".mb-md-10",".my-md-10",".mt-md-11",".mb-md-11",".my-md-11",".mt-md-12",".mb-md-12",".my-md-12",".mt-lg-7",".mb-lg-7",".my-lg-7",".mt-lg-8",".mb-lg-8",".my-lg-8",".mt-lg-9",".mb-lg-9",".my-lg-9",".mt-lg-10",".mb-lg-10",".my-lg-10",".mt-lg-11",".mb-lg-11",".my-lg-11",".mt-lg-12",".mb-lg-12",".my-lg-12",".mt-xl-7",".mb-xl-7",".my-xl-7",".mt-xl-8",".mb-xl-8",".my-xl-8",".mt-xl-9",".mb-xl-9",".my-xl-9",".mt-xl-10",".mb-xl-10",".my-xl-10",".mt-xl-11",".mb-xl-11",".my-xl-11",".mt-xl-12",".mb-xl-12",".my-xl-12",".pt-7",".pb-7",".py-7",".pt-8",".pb-8",".py-8",".pt-9",".pb-9",".py-9",".pt-10",".pb-10",".py-10",".pt-11",".pb-11",".py-11",".pt-12",".pb-12",".py-12",".pt-sm-7",".pb-sm-7",".py-sm-7",".pt-sm-8",".pb-sm-8",".py-sm-8",".pt-sm-9",".pb-sm-9",".py-sm-9",".pt-sm-10",".pb-sm-10",".py-sm-10",".pt-sm-11",".pb-sm-11",".py-sm-11",".pt-sm-12",".pb-sm-12",".py-sm-12",".pt-md-7",".pb-md-7",".py-md-7",".pt-md-8",".pb-md-8",".py-md-8",".pt-md-9",".pb-md-9",".py-md-9",".pt-md-10",".pb-md-10",".py-md-10",".pt-md-11",".pb-md-11",".py-md-11",".pt-md-12",".pb-md-12",".py-md-12",".pt-lg-7",".pb-lg-7",".py-lg-7",".pt-lg-8",".pb-lg-8",".py-lg-8",".pt-lg-9",".pb-lg-9",".py-lg-9",".pt-lg-10",".pb-lg-10",".py-lg-10",".pt-lg-11",".pb-lg-11",".py-lg-11",".pt-lg-12",".pb-lg-12",".py-lg-12",".pt-xl-7",".pb-xl-7",".py-xl-7",".pt-xl-8",".pb-xl-8",".py-xl-8",".pt-xl-9",".pb-xl-9",".py-xl-9",".pt-xl-10",".pb-xl-10",".py-xl-10",".pt-xl-11",".pb-xl-11",".py-xl-11",".pt-xl-12",".pb-xl-12",".py-xl-12"],"specificity":{"max":30,"average":12.19732441471572}},"declarations":{"total":429,"unique":138,"properties":{"font-family":["\"SFMono-Regular\",Consolas,\"Liberation Mono\",Menlo,Courier,monospace","Roboto,-apple-system,BlinkMacSystemFont,\"Helvetica Neue\",\"Segoe UI\",\"Oxygen\",\"Ubuntu\",\"Cantarell\",\"Open Sans\",sans-serif","\"SFMono-Regular\",Consolas,\"Liberation Mono\",Menlo,Courier,monospace"],"-webkit-font-smoothing":["antialiased","antialiased"],"font-size":["48px","54px","72px","36px","48px","54px","28px","34px","38px","18px","20px","22px","16px","14px","12px","21px","24px","26px","14px","16px","18px"],"font-weight":["300","300","300","400","500","500","500","300","400"],"padding-top":["0","40px","60px","120px","80px","24px","32px","112px","80px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px"],"padding-bottom":["0","40px","60px","120px","80px","24px","32px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px"],"padding-left":["8px","12px"],"margin-bottom":["24px","32px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px"],"line-height":["1.4","1.5"],"color":["#586069","#fff","rgba(255,255,255,0.75)","#f46909","#6f42c1","#fff","#6f42c1","rgba(27,31,35,0.3)","#f66a0a","#fff","#f66a0a","rgba(27,31,35,0.3)","#28a745","#fff","#28a745","rgba(27,31,35,0.3)","#fff","#2f363d"],"border-left":["3px solid #e1e4e8"],"margin-left":["-15px"],"background-color":["#d25a08","#c85607","#c65e17","#e9ad83","#fff","#fff","rgba(27,31,35,0.07)","#6f42c1","#fff","#fff","#fff","rgba(27,31,35,0.07)","#f66a0a","#fff","#fff","#fff","rgba(27,31,35,0.07)","#28a745","#fff","#fff","transparent","#fff","transparent","#24292e","rgba(0,0,0,0.25)"],"background-image":["linear-gradient(-180deg, #f7802f 0%, #d25a08 90%)","linear-gradient(-180deg, #f77a25 0%, #c85607 90%)","none","none","none","none","none","none","none","none","none","none","linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.05))"],"box-shadow":["0 0 0 0.2em rgba(247,128,47,0.4)","inset 0 0.15em 0.3em rgba(27,31,35,0.15)","none","0 0 0 0.2em rgba(111,66,193,0.4)","none","0 0 0 0.2em rgba(246,106,10,0.4)","none","0 0 0 0.2em rgba(40,167,69,0.4)","none","inset 0 -1px 0 rgba(0,0,0,0.05)","0 1px 1px rgba(27,31,35,0.05)"],"background-position":["-.5em"],"border-color":["rgba(27,31,35,0.5)","rgba(27,31,35,0.5)","rgba(27,31,35,0.2)","#6f42c1","#6f42c1","rgba(27,31,35,0.15)","#f66a0a","#f66a0a","rgba(27,31,35,0.15)","#28a745","#28a745","rgba(27,31,35,0.15)","#fff","rgba(255,255,255,0.15)"],"border":["1px solid rgba(255,255,255,0.5)","1px #e1e4e8 solid"],"position":["relative","absolute","relative","absolute","relative","absolute","fixed","relative","absolute","fixed","relative","absolute","fixed","relative","absolute","fixed"],"height":["45vw","30px","100%"],"min-height":["590px"],"max-height":["55vh"],"bottom":["0","0"],"left":["0","0"],"width":["100%","100%","100%","25%"],"content":["\" \"","\"\""],"background-repeat":["repeat-x"],"background-size":["cover"],"display":["block"],"padding":["32px 0","56px 0","16px"],"margin-top":["0","16px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px","48px","48px","64px","64px","80px","80px","96px","96px","112px","112px","128px","128px"],"border-collapse":["collapse"],"text-align":["left"],"border-right":["1px #e1e4e8 solid"],"border-bottom":["1px #e1e4e8 solid","1px #e1e4e8 solid"],"border-bottom-color":["#e1e4e8"],"filter":["grayscale(100%)"]}},"mediaQueries":{"total":69,"unique":4,"values":["(min-width: 768px)","(min-width: 1012px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 768px)","(min-width: 544px)","(min-width: 1280px)","(min-width: 1012px)","(min-width: 544px)","(min-width: 768px)","(min-width: 768px)","(min-width: 544px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 1280px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)"],"contents":[{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h0","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h0"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["54px"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h0","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h0"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["72px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h1","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h1"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["48px"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h1","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h1"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["54px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h2","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h2"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["34px"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h2","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h2"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["38px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h3","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h3"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["20px"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-h3","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-h3"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["22px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-lead","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-lead"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["24px"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".alt-lead","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".alt-lead"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["26px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[5],"max":5,"average":5},"selectorByRuleSizes":[{"selector":".pullquote","declarations":5}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pullquote"],"specificity":{"max":10,"average":10}},"declarations":{"total":5,"unique":5,"properties":{"padding-left":["12px"],"margin-bottom":["32px"],"margin-left":["-15px"],"font-size":["18px"],"line-height":["1.5"]}}},{"value":"(min-width: 544px)","rules":{"total":1,"size":{"graph":[2],"max":2,"average":2},"selectorByRuleSizes":[{"selector":".jumbotron","declarations":2}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".jumbotron"],"specificity":{"max":10,"average":10}},"declarations":{"total":2,"unique":2,"properties":{"padding-top":["60px"],"padding-bottom":["60px"]}}},{"value":"(min-width: 1280px)","rules":{"total":1,"size":{"graph":[2],"max":2,"average":2},"selectorByRuleSizes":[{"selector":".jumbotron","declarations":2}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".jumbotron"],"specificity":{"max":10,"average":10}},"declarations":{"total":2,"unique":2,"properties":{"padding-top":["120px"],"padding-bottom":["120px"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[5],"max":5,"average":5},"selectorByRuleSizes":[{"selector":".jumbotron-supertron","declarations":5}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".jumbotron-supertron"],"specificity":{"max":10,"average":10}},"declarations":{"total":5,"unique":5,"properties":{"height":["45vw"],"min-height":["590px"],"max-height":["55vh"],"padding-top":["80px"],"padding-bottom":["80px"]}}},{"value":"(min-width: 544px)","rules":{"total":1,"size":{"graph":[2],"max":2,"average":2},"selectorByRuleSizes":[{"selector":".jumbotron-minitron","declarations":2}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".jumbotron-minitron"],"specificity":{"max":10,"average":10}},"declarations":{"total":2,"unique":2,"properties":{"padding-top":["32px"],"padding-bottom":["32px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".page-section","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".page-section"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"padding":["56px 0"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".page-section-jumplink:target","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":1,"pseudoElement":0,"values":[".page-section-jumplink:target"],"specificity":{"max":20,"average":20}},"declarations":{"total":1,"unique":1,"properties":{"padding-top":["80px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":",.position-sm-fixed","declarations":1},{"selector":",.position-sm-absolute","declarations":1},{"selector":".position-sm-relative","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".position-sm-relative",".position-sm-absolute",".position-sm-fixed"],"specificity":{"max":10,"average":10}},"declarations":{"total":3,"unique":3,"properties":{"position":["relative","absolute","fixed"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":",.position-md-fixed","declarations":1},{"selector":",.position-md-absolute","declarations":1},{"selector":".position-md-relative","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".position-md-relative",".position-md-absolute",".position-md-fixed"],"specificity":{"max":10,"average":10}},"declarations":{"total":3,"unique":3,"properties":{"position":["relative","absolute","fixed"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":",.position-lg-fixed","declarations":1},{"selector":",.position-lg-absolute","declarations":1},{"selector":".position-lg-relative","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".position-lg-relative",".position-lg-absolute",".position-lg-fixed"],"specificity":{"max":10,"average":10}},"declarations":{"total":3,"unique":3,"properties":{"position":["relative","absolute","fixed"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":",.position-xl-fixed","declarations":1},{"selector":",.position-xl-absolute","declarations":1},{"selector":".position-xl-relative","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".position-xl-relative",".position-xl-absolute",".position-xl-fixed"],"specificity":{"max":10,"average":10}},"declarations":{"total":3,"unique":3,"properties":{"position":["relative","absolute","fixed"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-sm-7","declarations":2},{"selector":",.mb-sm-7","declarations":1},{"selector":".mt-sm-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-sm-7",".mb-sm-7",".my-sm-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["48px","48px"],"margin-bottom":["48px","48px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-sm-8","declarations":2},{"selector":",.mb-sm-8","declarations":1},{"selector":".mt-sm-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-sm-8",".mb-sm-8",".my-sm-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["64px","64px"],"margin-bottom":["64px","64px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-sm-9","declarations":2},{"selector":",.mb-sm-9","declarations":1},{"selector":".mt-sm-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-sm-9",".mb-sm-9",".my-sm-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["80px","80px"],"margin-bottom":["80px","80px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-sm-10","declarations":2},{"selector":",.mb-sm-10","declarations":1},{"selector":".mt-sm-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-sm-10",".mb-sm-10",".my-sm-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["96px","96px"],"margin-bottom":["96px","96px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-sm-11","declarations":2},{"selector":",.mb-sm-11","declarations":1},{"selector":".mt-sm-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-sm-11",".mb-sm-11",".my-sm-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["112px","112px"],"margin-bottom":["112px","112px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-sm-12","declarations":2},{"selector":",.mb-sm-12","declarations":1},{"selector":".mt-sm-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-sm-12",".mb-sm-12",".my-sm-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["128px","128px"],"margin-bottom":["128px","128px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-md-7","declarations":2},{"selector":",.mb-md-7","declarations":1},{"selector":".mt-md-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-md-7",".mb-md-7",".my-md-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["48px","48px"],"margin-bottom":["48px","48px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-md-8","declarations":2},{"selector":",.mb-md-8","declarations":1},{"selector":".mt-md-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-md-8",".mb-md-8",".my-md-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["64px","64px"],"margin-bottom":["64px","64px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-md-9","declarations":2},{"selector":",.mb-md-9","declarations":1},{"selector":".mt-md-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-md-9",".mb-md-9",".my-md-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["80px","80px"],"margin-bottom":["80px","80px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-md-10","declarations":2},{"selector":",.mb-md-10","declarations":1},{"selector":".mt-md-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-md-10",".mb-md-10",".my-md-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["96px","96px"],"margin-bottom":["96px","96px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-md-11","declarations":2},{"selector":",.mb-md-11","declarations":1},{"selector":".mt-md-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-md-11",".mb-md-11",".my-md-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["112px","112px"],"margin-bottom":["112px","112px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-md-12","declarations":2},{"selector":",.mb-md-12","declarations":1},{"selector":".mt-md-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-md-12",".mb-md-12",".my-md-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["128px","128px"],"margin-bottom":["128px","128px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-lg-7","declarations":2},{"selector":",.mb-lg-7","declarations":1},{"selector":".mt-lg-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-lg-7",".mb-lg-7",".my-lg-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["48px","48px"],"margin-bottom":["48px","48px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-lg-8","declarations":2},{"selector":",.mb-lg-8","declarations":1},{"selector":".mt-lg-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-lg-8",".mb-lg-8",".my-lg-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["64px","64px"],"margin-bottom":["64px","64px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-lg-9","declarations":2},{"selector":",.mb-lg-9","declarations":1},{"selector":".mt-lg-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-lg-9",".mb-lg-9",".my-lg-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["80px","80px"],"margin-bottom":["80px","80px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-lg-10","declarations":2},{"selector":",.mb-lg-10","declarations":1},{"selector":".mt-lg-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-lg-10",".mb-lg-10",".my-lg-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["96px","96px"],"margin-bottom":["96px","96px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-lg-11","declarations":2},{"selector":",.mb-lg-11","declarations":1},{"selector":".mt-lg-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-lg-11",".mb-lg-11",".my-lg-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["112px","112px"],"margin-bottom":["112px","112px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-lg-12","declarations":2},{"selector":",.mb-lg-12","declarations":1},{"selector":".mt-lg-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-lg-12",".mb-lg-12",".my-lg-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["128px","128px"],"margin-bottom":["128px","128px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-xl-7","declarations":2},{"selector":",.mb-xl-7","declarations":1},{"selector":".mt-xl-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-xl-7",".mb-xl-7",".my-xl-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["48px","48px"],"margin-bottom":["48px","48px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-xl-8","declarations":2},{"selector":",.mb-xl-8","declarations":1},{"selector":".mt-xl-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-xl-8",".mb-xl-8",".my-xl-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["64px","64px"],"margin-bottom":["64px","64px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-xl-9","declarations":2},{"selector":",.mb-xl-9","declarations":1},{"selector":".mt-xl-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-xl-9",".mb-xl-9",".my-xl-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["80px","80px"],"margin-bottom":["80px","80px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-xl-10","declarations":2},{"selector":",.mb-xl-10","declarations":1},{"selector":".mt-xl-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-xl-10",".mb-xl-10",".my-xl-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["96px","96px"],"margin-bottom":["96px","96px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-xl-11","declarations":2},{"selector":",.mb-xl-11","declarations":1},{"selector":".mt-xl-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-xl-11",".mb-xl-11",".my-xl-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["112px","112px"],"margin-bottom":["112px","112px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.my-xl-12","declarations":2},{"selector":",.mb-xl-12","declarations":1},{"selector":".mt-xl-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".mt-xl-12",".mb-xl-12",".my-xl-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"margin-top":["128px","128px"],"margin-bottom":["128px","128px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-sm-7","declarations":2},{"selector":",.pb-sm-7","declarations":1},{"selector":".pt-sm-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-sm-7",".pb-sm-7",".py-sm-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["48px","48px"],"padding-bottom":["48px","48px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-sm-8","declarations":2},{"selector":",.pb-sm-8","declarations":1},{"selector":".pt-sm-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-sm-8",".pb-sm-8",".py-sm-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["64px","64px"],"padding-bottom":["64px","64px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-sm-9","declarations":2},{"selector":",.pb-sm-9","declarations":1},{"selector":".pt-sm-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-sm-9",".pb-sm-9",".py-sm-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["80px","80px"],"padding-bottom":["80px","80px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-sm-10","declarations":2},{"selector":",.pb-sm-10","declarations":1},{"selector":".pt-sm-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-sm-10",".pb-sm-10",".py-sm-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["96px","96px"],"padding-bottom":["96px","96px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-sm-11","declarations":2},{"selector":",.pb-sm-11","declarations":1},{"selector":".pt-sm-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-sm-11",".pb-sm-11",".py-sm-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["112px","112px"],"padding-bottom":["112px","112px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-sm-12","declarations":2},{"selector":",.pb-sm-12","declarations":1},{"selector":".pt-sm-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-sm-12",".pb-sm-12",".py-sm-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["128px","128px"],"padding-bottom":["128px","128px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-md-7","declarations":2},{"selector":",.pb-md-7","declarations":1},{"selector":".pt-md-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-md-7",".pb-md-7",".py-md-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["48px","48px"],"padding-bottom":["48px","48px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-md-8","declarations":2},{"selector":",.pb-md-8","declarations":1},{"selector":".pt-md-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-md-8",".pb-md-8",".py-md-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["64px","64px"],"padding-bottom":["64px","64px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-md-9","declarations":2},{"selector":",.pb-md-9","declarations":1},{"selector":".pt-md-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-md-9",".pb-md-9",".py-md-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["80px","80px"],"padding-bottom":["80px","80px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-md-10","declarations":2},{"selector":",.pb-md-10","declarations":1},{"selector":".pt-md-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-md-10",".pb-md-10",".py-md-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["96px","96px"],"padding-bottom":["96px","96px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-md-11","declarations":2},{"selector":",.pb-md-11","declarations":1},{"selector":".pt-md-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-md-11",".pb-md-11",".py-md-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["112px","112px"],"padding-bottom":["112px","112px"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-md-12","declarations":2},{"selector":",.pb-md-12","declarations":1},{"selector":".pt-md-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-md-12",".pb-md-12",".py-md-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["128px","128px"],"padding-bottom":["128px","128px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-lg-7","declarations":2},{"selector":",.pb-lg-7","declarations":1},{"selector":".pt-lg-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-lg-7",".pb-lg-7",".py-lg-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["48px","48px"],"padding-bottom":["48px","48px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-lg-8","declarations":2},{"selector":",.pb-lg-8","declarations":1},{"selector":".pt-lg-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-lg-8",".pb-lg-8",".py-lg-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["64px","64px"],"padding-bottom":["64px","64px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-lg-9","declarations":2},{"selector":",.pb-lg-9","declarations":1},{"selector":".pt-lg-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-lg-9",".pb-lg-9",".py-lg-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["80px","80px"],"padding-bottom":["80px","80px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-lg-10","declarations":2},{"selector":",.pb-lg-10","declarations":1},{"selector":".pt-lg-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-lg-10",".pb-lg-10",".py-lg-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["96px","96px"],"padding-bottom":["96px","96px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-lg-11","declarations":2},{"selector":",.pb-lg-11","declarations":1},{"selector":".pt-lg-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-lg-11",".pb-lg-11",".py-lg-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["112px","112px"],"padding-bottom":["112px","112px"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-lg-12","declarations":2},{"selector":",.pb-lg-12","declarations":1},{"selector":".pt-lg-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-lg-12",".pb-lg-12",".py-lg-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["128px","128px"],"padding-bottom":["128px","128px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-xl-7","declarations":2},{"selector":",.pb-xl-7","declarations":1},{"selector":".pt-xl-7","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-xl-7",".pb-xl-7",".py-xl-7"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["48px","48px"],"padding-bottom":["48px","48px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-xl-8","declarations":2},{"selector":",.pb-xl-8","declarations":1},{"selector":".pt-xl-8","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-xl-8",".pb-xl-8",".py-xl-8"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["64px","64px"],"padding-bottom":["64px","64px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-xl-9","declarations":2},{"selector":",.pb-xl-9","declarations":1},{"selector":".pt-xl-9","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-xl-9",".pb-xl-9",".py-xl-9"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["80px","80px"],"padding-bottom":["80px","80px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-xl-10","declarations":2},{"selector":",.pb-xl-10","declarations":1},{"selector":".pt-xl-10","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-xl-10",".pb-xl-10",".py-xl-10"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["96px","96px"],"padding-bottom":["96px","96px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-xl-11","declarations":2},{"selector":",.pb-xl-11","declarations":1},{"selector":".pt-xl-11","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-xl-11",".pb-xl-11",".py-xl-11"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["112px","112px"],"padding-bottom":["112px","112px"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,2],"max":2,"average":1.3333333333333333},"selectorByRuleSizes":[{"selector":",.py-xl-12","declarations":2},{"selector":",.pb-xl-12","declarations":1},{"selector":".pt-xl-12","declarations":1}]},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".pt-xl-12",".pb-xl-12",".py-xl-12"],"specificity":{"max":10,"average":10}},"declarations":{"total":4,"unique":2,"properties":{"padding-top":["128px","128px"],"padding-bottom":["128px","128px"]}}}]}}}
+23
node_modules/primer-marketing/index.scss
··· 1 + /*! 2 + * Primer-marketing 3 + * http://primer.github.io 4 + * 5 + * Released under MIT license. Copyright (c) 2019 GitHub Inc. 6 + */ 7 + 8 + // Primer master file 9 + // 10 + // Imports all Primer files in their intended order for easy mass-inclusion. 11 + // Should you need specific files, you can easily use separate `@import`s. 12 + 13 + // Global requirements 14 + @import "primer-support/index.scss"; 15 + @import "primer-marketing-support/index.scss"; 16 + 17 + // marketing specific css modules 18 + @import "primer-marketing-type/index.scss"; 19 + @import "primer-marketing-buttons/index.scss"; 20 + @import "primer-page-headers/index.scss"; 21 + @import "primer-page-sections/index.scss"; 22 + @import "primer-tables/index.scss"; 23 + @import "primer-marketing-utilities/index.scss";
+72
node_modules/primer-marketing/package.json
··· 1 + { 2 + "_from": "primer-marketing", 3 + "_id": "primer-marketing@6.3.3", 4 + "_inBundle": false, 5 + "_integrity": "sha512-vmR/YkOlFnQVQSxluXe5lbkH+B7Z2tirgCDGVp+SD9Zs+FJ6YRELmw6cjm0okVkH9205qcMvy9INOunkhKrktw==", 6 + "_location": "/primer-marketing", 7 + "_phantomChildren": {}, 8 + "_requested": { 9 + "type": "tag", 10 + "registry": true, 11 + "raw": "primer-marketing", 12 + "name": "primer-marketing", 13 + "escapedName": "primer-marketing", 14 + "rawSpec": "", 15 + "saveSpec": null, 16 + "fetchSpec": "latest" 17 + }, 18 + "_requiredBy": [ 19 + "#USER", 20 + "/" 21 + ], 22 + "_resolved": "https://registry.npmjs.org/primer-marketing/-/primer-marketing-6.3.3.tgz", 23 + "_shasum": "8091d51aec5e65e60309958c08fd5030c6fe4879", 24 + "_spec": "primer-marketing", 25 + "_where": "/Users/sophieshepherd/Desktop/projects/profile-generator", 26 + "author": { 27 + "name": "GitHub, Inc." 28 + }, 29 + "bugs": { 30 + "url": "https://github.com/primer/primer/issues" 31 + }, 32 + "bundleDependencies": false, 33 + "dependencies": { 34 + "primer-marketing-buttons": "1.0.13", 35 + "primer-marketing-support": "1.5.6", 36 + "primer-marketing-type": "1.4.13", 37 + "primer-marketing-utilities": "1.7.3", 38 + "primer-page-headers": "1.5.3", 39 + "primer-page-sections": "1.5.3", 40 + "primer-support": "4.7.2", 41 + "primer-tables": "1.5.3" 42 + }, 43 + "deprecated": false, 44 + "description": "Primer marketing packages", 45 + "files": [ 46 + "index.scss", 47 + "build" 48 + ], 49 + "homepage": "http://primer.github.io/", 50 + "license": "MIT", 51 + "main": "build/index.js", 52 + "name": "primer-marketing", 53 + "primer": { 54 + "category": "marketing", 55 + "module_type": "meta" 56 + }, 57 + "repository": { 58 + "type": "git", 59 + "url": "https://github.com/primer/primer/tree/master/modules/primer-marketing" 60 + }, 61 + "sass": "index.scss", 62 + "scripts": { 63 + "build": "../../script/npm-run primer-module-build index.scss", 64 + "lint": "../../script/lint-scss", 65 + "postpublish": "../../script/notify success", 66 + "prepare": "npm run build", 67 + "prepublishOnly": "../../script/notify pending", 68 + "test": "npm run build" 69 + }, 70 + "style": "build/build.css", 71 + "version": "6.3.3" 72 + }
+21
node_modules/primer-page-headers/LICENSE
··· 1 + The MIT License (MIT) 2 + 3 + Copyright (c) 2019 GitHub Inc. 4 + 5 + Permission is hereby granted, free of charge, to any person obtaining a copy 6 + of this software and associated documentation files (the "Software"), to deal 7 + in the Software without restriction, including without limitation the rights 8 + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 + copies of the Software, and to permit persons to whom the Software is 10 + furnished to do so, subject to the following conditions: 11 + 12 + The above copyright notice and this permission notice shall be included in all 13 + copies or substantial portions of the Software. 14 + 15 + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 + SOFTWARE.
+58
node_modules/primer-page-headers/README.md
··· 1 + # Primer Marketing CSS Page Headers 2 + 3 + [![npm version](https://img.shields.io/npm/v/primer-page-headers.svg)](https://www.npmjs.org/package/primer-page-headers) 4 + [![Build Status](https://travis-ci.org/primer/primer.svg?branch=master)](https://travis-ci.org/primer/primer) 5 + 6 + > Jumbotrons, heroes, and featured content sections for marketing websites at GitHub. 7 + 8 + This repository is a module of the full [primer][primer] repository. 9 + 10 + ## Documentation 11 + 12 + <!-- %docs 13 + title: Page headers 14 + status: Deprecated 15 + --> 16 + 17 + **This component will be removed, and the `primer-page-headers` npm package deprecated, in Primer version 11.** 18 + 19 + <!-- %enddocs --> 20 + 21 + 22 + ## Install 23 + 24 + This repository is distributed with [npm][npm]. After [installing npm][install-npm], you can install `primer-page-headers` with this command. 25 + 26 + ``` 27 + $ npm install --save primer-page-headers 28 + ``` 29 + 30 + ## Usage 31 + 32 + The source files included are written in [Sass][sass] (`scss`) You can simply point your sass `include-path` at your `node_modules` directory and import it like this. 33 + 34 + ```scss 35 + @import "primer-page-headers/index.scss"; 36 + ``` 37 + 38 + You can also import specific portions of the module by importing those partials from the `/lib/` folder. _Make sure you import any requirements along with the modules._ 39 + 40 + ## Build 41 + 42 + For a compiled **css** version of this module, a npm script is included that will output a css version to `build/build.css` 43 + 44 + ``` 45 + $ npm run build 46 + ``` 47 + 48 + ## License 49 + 50 + MIT &copy; [GitHub](https://github.com/) 51 + 52 + [primer]: https://github.com/primer/primer 53 + [primer-support]: https://github.com/primer/primer-support 54 + [support]: https://github.com/primer/primer-support 55 + [docs]: http://primer.github.io/ 56 + [npm]: https://www.npmjs.com/ 57 + [install-npm]: https://docs.npmjs.com/getting-started/installing-node 58 + [sass]: http://sass-lang.com/
+1
node_modules/primer-page-headers/build/build.css
··· 1 + .jumbotron{position:relative;padding-top:40px;padding-bottom:40px}@media (min-width: 544px){.jumbotron{padding-top:60px;padding-bottom:60px}}@media (min-width: 1280px){.jumbotron{padding-top:120px;padding-bottom:120px}}@media (min-width: 1012px){.jumbotron-supertron{height:45vw;min-height:590px;max-height:55vh;padding-top:80px;padding-bottom:80px}}.jumbotron-minitron{padding-top:24px;padding-bottom:24px}@media (min-width: 544px){.jumbotron-minitron{padding-top:32px;padding-bottom:32px}}.jumbotron-shadow::after{position:absolute;bottom:0;left:0;width:100%;height:30px;content:" ";background-color:transparent;background-image:linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.05));background-repeat:repeat-x;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.05)}.jumbotron-photo{position:relative;background-color:#24292e;background-size:cover}.jumbotron-photo::before{position:absolute;bottom:0;left:0;display:block;width:100%;height:100%;content:"";background-color:rgba(0,0,0,0.25)}
+1
node_modules/primer-page-headers/build/data.json
··· 1 + {"cssstats":{"size":974,"gzipSize":380,"humanizedSize":"974B","humanizedGzipSize":"380B","rules":{"total":9,"size":{"graph":[3,2,2,5,2,2,10,3,8],"max":10,"average":4.111111111111111},"selectorByRuleSizes":[{"selector":".jumbotron-shadow::after","declarations":10},{"selector":".jumbotron-photo::before","declarations":8},{"selector":".jumbotron-supertron","declarations":5},{"selector":".jumbotron-photo","declarations":3},{"selector":".jumbotron","declarations":3},{"selector":".jumbotron-minitron","declarations":2},{"selector":".jumbotron-minitron","declarations":2},{"selector":".jumbotron","declarations":2},{"selector":".jumbotron","declarations":2}]},"selectors":{"total":9,"type":0,"class":9,"id":0,"pseudoClass":0,"pseudoElement":2,"values":[".jumbotron",".jumbotron",".jumbotron",".jumbotron-supertron",".jumbotron-minitron",".jumbotron-minitron",".jumbotron-shadow::after",".jumbotron-photo",".jumbotron-photo::before"],"specificity":{"max":11,"average":10.222222222222221}},"declarations":{"total":37,"unique":32,"properties":{"position":["relative","absolute","relative","absolute"],"padding-top":["40px","60px","120px","80px","24px","32px"],"padding-bottom":["40px","60px","120px","80px","24px","32px"],"height":["45vw","30px","100%"],"min-height":["590px"],"max-height":["55vh"],"bottom":["0","0"],"left":["0","0"],"width":["100%","100%"],"content":["\" \"","\"\""],"background-color":["transparent","#24292e","rgba(0,0,0,0.25)"],"background-image":["linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.05))"],"background-repeat":["repeat-x"],"box-shadow":["inset 0 -1px 0 rgba(0,0,0,0.05)"],"background-size":["cover"],"display":["block"]}},"mediaQueries":{"total":4,"unique":3,"values":["(min-width: 544px)","(min-width: 1280px)","(min-width: 1012px)","(min-width: 544px)"],"contents":[{"value":"(min-width: 544px)","rules":{"total":1,"size":{"graph":[2],"max":2,"average":2},"selectorByRuleSizes":[{"selector":".jumbotron","declarations":2}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".jumbotron"],"specificity":{"max":10,"average":10}},"declarations":{"total":2,"unique":2,"properties":{"padding-top":["60px"],"padding-bottom":["60px"]}}},{"value":"(min-width: 1280px)","rules":{"total":1,"size":{"graph":[2],"max":2,"average":2},"selectorByRuleSizes":[{"selector":".jumbotron","declarations":2}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".jumbotron"],"specificity":{"max":10,"average":10}},"declarations":{"total":2,"unique":2,"properties":{"padding-top":["120px"],"padding-bottom":["120px"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[5],"max":5,"average":5},"selectorByRuleSizes":[{"selector":".jumbotron-supertron","declarations":5}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".jumbotron-supertron"],"specificity":{"max":10,"average":10}},"declarations":{"total":5,"unique":5,"properties":{"height":["45vw"],"min-height":["590px"],"max-height":["55vh"],"padding-top":["80px"],"padding-bottom":["80px"]}}},{"value":"(min-width: 544px)","rules":{"total":1,"size":{"graph":[2],"max":2,"average":2},"selectorByRuleSizes":[{"selector":".jumbotron-minitron","declarations":2}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".jumbotron-minitron"],"specificity":{"max":10,"average":10}},"declarations":{"total":2,"unique":2,"properties":{"padding-top":["32px"],"padding-bottom":["32px"]}}}]}}}
+1
node_modules/primer-page-headers/build/index.js
··· 1 + module.exports = {"cssstats":{"size":974,"gzipSize":380,"humanizedSize":"974B","humanizedGzipSize":"380B","rules":{"total":9,"size":{"graph":[3,2,2,5,2,2,10,3,8],"max":10,"average":4.111111111111111},"selectorByRuleSizes":[{"selector":".jumbotron-shadow::after","declarations":10},{"selector":".jumbotron-photo::before","declarations":8},{"selector":".jumbotron-supertron","declarations":5},{"selector":".jumbotron-photo","declarations":3},{"selector":".jumbotron","declarations":3},{"selector":".jumbotron-minitron","declarations":2},{"selector":".jumbotron-minitron","declarations":2},{"selector":".jumbotron","declarations":2},{"selector":".jumbotron","declarations":2}]},"selectors":{"total":9,"type":0,"class":9,"id":0,"pseudoClass":0,"pseudoElement":2,"values":[".jumbotron",".jumbotron",".jumbotron",".jumbotron-supertron",".jumbotron-minitron",".jumbotron-minitron",".jumbotron-shadow::after",".jumbotron-photo",".jumbotron-photo::before"],"specificity":{"max":11,"average":10.222222222222221}},"declarations":{"total":37,"unique":32,"properties":{"position":["relative","absolute","relative","absolute"],"padding-top":["40px","60px","120px","80px","24px","32px"],"padding-bottom":["40px","60px","120px","80px","24px","32px"],"height":["45vw","30px","100%"],"min-height":["590px"],"max-height":["55vh"],"bottom":["0","0"],"left":["0","0"],"width":["100%","100%"],"content":["\" \"","\"\""],"background-color":["transparent","#24292e","rgba(0,0,0,0.25)"],"background-image":["linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.05))"],"background-repeat":["repeat-x"],"box-shadow":["inset 0 -1px 0 rgba(0,0,0,0.05)"],"background-size":["cover"],"display":["block"]}},"mediaQueries":{"total":4,"unique":3,"values":["(min-width: 544px)","(min-width: 1280px)","(min-width: 1012px)","(min-width: 544px)"],"contents":[{"value":"(min-width: 544px)","rules":{"total":1,"size":{"graph":[2],"max":2,"average":2},"selectorByRuleSizes":[{"selector":".jumbotron","declarations":2}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".jumbotron"],"specificity":{"max":10,"average":10}},"declarations":{"total":2,"unique":2,"properties":{"padding-top":["60px"],"padding-bottom":["60px"]}}},{"value":"(min-width: 1280px)","rules":{"total":1,"size":{"graph":[2],"max":2,"average":2},"selectorByRuleSizes":[{"selector":".jumbotron","declarations":2}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".jumbotron"],"specificity":{"max":10,"average":10}},"declarations":{"total":2,"unique":2,"properties":{"padding-top":["120px"],"padding-bottom":["120px"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[5],"max":5,"average":5},"selectorByRuleSizes":[{"selector":".jumbotron-supertron","declarations":5}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".jumbotron-supertron"],"specificity":{"max":10,"average":10}},"declarations":{"total":5,"unique":5,"properties":{"height":["45vw"],"min-height":["590px"],"max-height":["55vh"],"padding-top":["80px"],"padding-bottom":["80px"]}}},{"value":"(min-width: 544px)","rules":{"total":1,"size":{"graph":[2],"max":2,"average":2},"selectorByRuleSizes":[{"selector":".jumbotron-minitron","declarations":2}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".jumbotron-minitron"],"specificity":{"max":10,"average":10}},"declarations":{"total":2,"unique":2,"properties":{"padding-top":["32px"],"padding-bottom":["32px"]}}}]}}}
+6
node_modules/primer-page-headers/index.scss
··· 1 + @warn "The entire primer-page-headers package will be removed in primer v11.0.0."; 2 + 3 + // support files 4 + @import "primer-support/index.scss"; 5 + @import "primer-marketing-support/index.scss"; 6 + @import "./lib/headers.scss";
+68
node_modules/primer-page-headers/lib/headers.scss
··· 1 + .jumbotron { 2 + position: relative; 3 + padding-top: $spacer-6; 4 + padding-bottom: $spacer-6; 5 + 6 + @include breakpoint(sm) { 7 + padding-top: $spacer-6 * 1.5; 8 + padding-bottom: $spacer-6 * 1.5; 9 + } 10 + 11 + @include breakpoint(xl) { 12 + padding-top: $spacer-6 * 3; 13 + padding-bottom: $spacer-6 * 3; 14 + } 15 + } 16 + 17 + .jumbotron-supertron { 18 + @include breakpoint(lg) { 19 + height: 45vw; 20 + min-height: 590px; 21 + max-height: 55vh; 22 + padding-top: $spacer-6 + $spacer-6; 23 + padding-bottom: $spacer-6 + $spacer-6; 24 + } 25 + } 26 + 27 + .jumbotron-minitron { 28 + padding-top: $spacer-4; 29 + padding-bottom: $spacer-4; 30 + 31 + @include breakpoint(sm) { 32 + padding-top: $spacer-5; 33 + padding-bottom: $spacer-5; 34 + } 35 + } 36 + 37 + .jumbotron-shadow { 38 + // Shadow 39 + &::after { 40 + position: absolute; 41 + bottom: 0; 42 + left: 0; 43 + width: 100%; 44 + height: 30px; 45 + content: " "; 46 + background-color: transparent; 47 + background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05)); 48 + background-repeat: repeat-x; 49 + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.05); 50 + } 51 + } 52 + 53 + .jumbotron-photo { 54 + position: relative; 55 + background-color: $gray-dark; 56 + background-size: cover; 57 + 58 + &::before { 59 + position: absolute; 60 + bottom: 0; 61 + left: 0; 62 + display: block; 63 + width: 100%; 64 + height: 100%; 65 + content: ""; 66 + background-color: rgba(0, 0, 0, 0.25); 67 + } 68 + }
+76
node_modules/primer-page-headers/package.json
··· 1 + { 2 + "_from": "primer-page-headers@1.5.3", 3 + "_id": "primer-page-headers@1.5.3", 4 + "_inBundle": false, 5 + "_integrity": "sha512-SVgAnr1jz/8qNhr+LsQayHGGICi1pCfBJV2R+zhcooDJC29ddSoTW+LpwvBj1P68c7sJfaMPRmlcq0hUGGG/Pw==", 6 + "_location": "/primer-page-headers", 7 + "_phantomChildren": {}, 8 + "_requested": { 9 + "type": "version", 10 + "registry": true, 11 + "raw": "primer-page-headers@1.5.3", 12 + "name": "primer-page-headers", 13 + "escapedName": "primer-page-headers", 14 + "rawSpec": "1.5.3", 15 + "saveSpec": null, 16 + "fetchSpec": "1.5.3" 17 + }, 18 + "_requiredBy": [ 19 + "/primer-marketing" 20 + ], 21 + "_resolved": "https://registry.npmjs.org/primer-page-headers/-/primer-page-headers-1.5.3.tgz", 22 + "_shasum": "ddd942cdd57473db9d30a9fdd872ae920838cb42", 23 + "_spec": "primer-page-headers@1.5.3", 24 + "_where": "/Users/sophieshepherd/Desktop/projects/profile-generator/node_modules/primer-marketing", 25 + "author": { 26 + "name": "GitHub, Inc." 27 + }, 28 + "bugs": { 29 + "url": "https://github.com/primer/primer/issues" 30 + }, 31 + "bundleDependencies": false, 32 + "dependencies": { 33 + "primer-marketing-support": "1.5.6", 34 + "primer-support": "4.7.2" 35 + }, 36 + "deprecated": false, 37 + "description": "Jumbotrons, heroes, and featured content sections for marketing websites at GitHub.", 38 + "files": [ 39 + "index.scss", 40 + "lib", 41 + "build" 42 + ], 43 + "homepage": "http://primer.github.io/", 44 + "keywords": [ 45 + "css", 46 + "flash", 47 + "github", 48 + "hero", 49 + "jumbotron", 50 + "primer", 51 + "design-system", 52 + "style" 53 + ], 54 + "license": "MIT", 55 + "main": "build/index.js", 56 + "name": "primer-page-headers", 57 + "primer": { 58 + "category": "marketing", 59 + "module_type": "components" 60 + }, 61 + "repository": { 62 + "type": "git", 63 + "url": "https://github.com/primer/primer/tree/master/modules/primer-page-headers" 64 + }, 65 + "sass": "index.scss", 66 + "scripts": { 67 + "build": "../../script/npm-run primer-module-build index.scss", 68 + "lint": "../../script/lint-scss", 69 + "postpublish": "../../script/notify success", 70 + "prepare": "npm run build", 71 + "prepublishOnly": "../../script/notify pending", 72 + "test": "../../script/npm-run-all build lint" 73 + }, 74 + "style": "build/build.css", 75 + "version": "1.5.3" 76 + }
+21
node_modules/primer-page-sections/LICENSE
··· 1 + The MIT License (MIT) 2 + 3 + Copyright (c) 2019 GitHub Inc. 4 + 5 + Permission is hereby granted, free of charge, to any person obtaining a copy 6 + of this software and associated documentation files (the "Software"), to deal 7 + in the Software without restriction, including without limitation the rights 8 + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 + copies of the Software, and to permit persons to whom the Software is 10 + furnished to do so, subject to the following conditions: 11 + 12 + The above copyright notice and this permission notice shall be included in all 13 + copies or substantial portions of the Software. 14 + 15 + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 + SOFTWARE.
+57
node_modules/primer-page-sections/README.md
··· 1 + # Primer Page Sections 2 + 3 + [![npm version](https://img.shields.io/npm/v/primer-page-sections.svg)](https://www.npmjs.org/package/primer-page-sections) 4 + [![Build Status](https://travis-ci.org/primer/primer.svg?branch=master)](https://travis-ci.org/primer/primer) 5 + 6 + > Flash messages, or alerts, inform users of successful or pending actions. Use them sparingly. Don’t show more than one at a time. 7 + 8 + This repository is a module of the full [primer][primer] repository. 9 + 10 + ## Documentation 11 + 12 + <!-- %docs 13 + title: Page sections 14 + status: Deprecated 15 + --> 16 + 17 + **This component will be removed, and the `primer-page-sections` npm package deprecated, in Primer version 11.** 18 + 19 + <!-- %enddocs --> 20 + 21 + ## Install 22 + 23 + This repository is distributed with [npm][npm]. After [installing npm][install-npm], you can install `primer-page-sections` with this command. 24 + 25 + ``` 26 + $ npm install --save primer-page-sections 27 + ``` 28 + 29 + ## Usage 30 + 31 + The source files included are written in [Sass][sass] (`scss`) You can simply point your sass `include-path` at your `node_modules` directory and import it like this. 32 + 33 + ```scss 34 + @import "primer-page-sections/index.scss"; 35 + ``` 36 + 37 + You can also import specific portions of the module by importing those partials from the `/lib/` folder. _Make sure you import any requirements along with the modules._ 38 + 39 + ## Build 40 + 41 + For a compiled **css** version of this module, a npm script is included that will output a css version to `build/build.css` 42 + 43 + ``` 44 + $ npm run build 45 + ``` 46 + 47 + ## License 48 + 49 + MIT &copy; [GitHub](https://github.com/) 50 + 51 + [primer]: https://github.com/primer/primer 52 + [primer-support]: https://github.com/primer/primer-support 53 + [support]: https://github.com/primer/primer-support 54 + [docs]: http://primer.github.io/ 55 + [npm]: https://www.npmjs.com/ 56 + [install-npm]: https://docs.npmjs.com/getting-started/installing-node 57 + [sass]: http://sass-lang.com/
+1
node_modules/primer-page-sections/build/build.css
··· 1 + .page-section{padding:32px 0;margin-top:0}@media (min-width: 768px){.page-section{padding:56px 0}}.page-section-jumplink:target{padding-top:112px}@media (min-width: 768px){.page-section-jumplink:target{padding-top:80px}}
+1
node_modules/primer-page-sections/build/data.json
··· 1 + {"cssstats":{"size":221,"gzipSize":132,"humanizedSize":"221B","humanizedGzipSize":"132B","rules":{"total":4,"size":{"graph":[2,1,1,1],"max":2,"average":1.25},"selectorByRuleSizes":[{"selector":".page-section","declarations":2},{"selector":".page-section-jumplink:target","declarations":1},{"selector":".page-section-jumplink:target","declarations":1},{"selector":".page-section","declarations":1}]},"selectors":{"total":4,"type":0,"class":4,"id":0,"pseudoClass":2,"pseudoElement":0,"values":[".page-section",".page-section",".page-section-jumplink:target",".page-section-jumplink:target"],"specificity":{"max":20,"average":15}},"declarations":{"total":5,"unique":5,"properties":{"padding":["32px 0","56px 0"],"margin-top":["0"],"padding-top":["112px","80px"]}},"mediaQueries":{"total":2,"unique":1,"values":["(min-width: 768px)","(min-width: 768px)"],"contents":[{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".page-section","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".page-section"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"padding":["56px 0"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".page-section-jumplink:target","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":1,"pseudoElement":0,"values":[".page-section-jumplink:target"],"specificity":{"max":20,"average":20}},"declarations":{"total":1,"unique":1,"properties":{"padding-top":["80px"]}}}]}}}
+1
node_modules/primer-page-sections/build/index.js
··· 1 + module.exports = {"cssstats":{"size":221,"gzipSize":132,"humanizedSize":"221B","humanizedGzipSize":"132B","rules":{"total":4,"size":{"graph":[2,1,1,1],"max":2,"average":1.25},"selectorByRuleSizes":[{"selector":".page-section","declarations":2},{"selector":".page-section-jumplink:target","declarations":1},{"selector":".page-section-jumplink:target","declarations":1},{"selector":".page-section","declarations":1}]},"selectors":{"total":4,"type":0,"class":4,"id":0,"pseudoClass":2,"pseudoElement":0,"values":[".page-section",".page-section",".page-section-jumplink:target",".page-section-jumplink:target"],"specificity":{"max":20,"average":15}},"declarations":{"total":5,"unique":5,"properties":{"padding":["32px 0","56px 0"],"margin-top":["0"],"padding-top":["112px","80px"]}},"mediaQueries":{"total":2,"unique":1,"values":["(min-width: 768px)","(min-width: 768px)"],"contents":[{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".page-section","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".page-section"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"padding":["56px 0"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1},"selectorByRuleSizes":[{"selector":".page-section-jumplink:target","declarations":1}]},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":1,"pseudoElement":0,"values":[".page-section-jumplink:target"],"specificity":{"max":20,"average":20}},"declarations":{"total":1,"unique":1,"properties":{"padding-top":["80px"]}}}]}}}
+6
node_modules/primer-page-sections/index.scss
··· 1 + @warn "The entire primer-page-sections package will be removed in primer v11.0.0."; 2 + 3 + // support files 4 + @import "primer-support/index.scss"; 5 + @import "primer-marketing-support/index.scss"; 6 + @import "./lib/page-section.scss";
+18
node_modules/primer-page-sections/lib/page-section.scss
··· 1 + // Styles for page sections 2 + .page-section { 3 + padding: $spacer-5 0; 4 + margin-top: 0; 5 + 6 + @include breakpoint(md) { 7 + padding: $spacer-6 + $spacer-3 0; 8 + } 9 + } 10 + 11 + // Adds a little extra headroom for sections linked to via in-page anchor links 12 + .page-section-jumplink:target { 13 + padding-top: ($spacer-6 * 2) + $spacer-5; 14 + 15 + @include breakpoint(md) { 16 + padding-top: $spacer-6 * 2; 17 + } 18 + }
+75
node_modules/primer-page-sections/package.json
··· 1 + { 2 + "_from": "primer-page-sections@1.5.3", 3 + "_id": "primer-page-sections@1.5.3", 4 + "_inBundle": false, 5 + "_integrity": "sha512-xaj6v+v3FvaSMVFDZAYsrObkvOviPwxYZt0rrkMeoyhrMVG2uB3nD3Kmu3st9UbwobdXjMTSKPkKBcarckwhuw==", 6 + "_location": "/primer-page-sections", 7 + "_phantomChildren": {}, 8 + "_requested": { 9 + "type": "version", 10 + "registry": true, 11 + "raw": "primer-page-sections@1.5.3", 12 + "name": "primer-page-sections", 13 + "escapedName": "primer-page-sections", 14 + "rawSpec": "1.5.3", 15 + "saveSpec": null, 16 + "fetchSpec": "1.5.3" 17 + }, 18 + "_requiredBy": [ 19 + "/primer-marketing" 20 + ], 21 + "_resolved": "https://registry.npmjs.org/primer-page-sections/-/primer-page-sections-1.5.3.tgz", 22 + "_shasum": "111848f87429f5e66d8535ca40c5d601243a83fa", 23 + "_spec": "primer-page-sections@1.5.3", 24 + "_where": "/Users/sophieshepherd/Desktop/projects/profile-generator/node_modules/primer-marketing", 25 + "author": { 26 + "name": "GitHub, Inc." 27 + }, 28 + "bugs": { 29 + "url": "https://github.com/primer/primer/issues" 30 + }, 31 + "bundleDependencies": false, 32 + "dependencies": { 33 + "primer-marketing-support": "1.5.6", 34 + "primer-support": "4.7.2" 35 + }, 36 + "deprecated": false, 37 + "description": "Styles to create distinct sections of marketing pages at GitHub.", 38 + "files": [ 39 + "index.scss", 40 + "lib", 41 + "build" 42 + ], 43 + "homepage": "http://primer.github.io/", 44 + "keywords": [ 45 + "css", 46 + "github", 47 + "page sections", 48 + "primer", 49 + "design-system", 50 + "sections", 51 + "style" 52 + ], 53 + "license": "MIT", 54 + "main": "build/index.js", 55 + "name": "primer-page-sections", 56 + "primer": { 57 + "category": "marketing", 58 + "module_type": "components" 59 + }, 60 + "repository": { 61 + "type": "git", 62 + "url": "https://github.com/primer/primer/tree/master/modules/primer-page-sections" 63 + }, 64 + "sass": "index.scss", 65 + "scripts": { 66 + "build": "../../script/npm-run primer-module-build index.scss", 67 + "lint": "../../script/lint-scss", 68 + "postpublish": "../../script/notify success", 69 + "prepare": "npm run build", 70 + "prepublishOnly": "../../script/notify pending", 71 + "test": "../../script/npm-run-all build lint" 72 + }, 73 + "style": "build/build.css", 74 + "version": "1.5.3" 75 + }
+21
node_modules/primer-tables/LICENSE
··· 1 + The MIT License (MIT) 2 + 3 + Copyright (c) 2019 GitHub Inc. 4 + 5 + Permission is hereby granted, free of charge, to any person obtaining a copy 6 + of this software and associated documentation files (the "Software"), to deal 7 + in the Software without restriction, including without limitation the rights 8 + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 + copies of the Software, and to permit persons to whom the Software is 10 + furnished to do so, subject to the following conditions: 11 + 12 + The above copyright notice and this permission notice shall be included in all 13 + copies or substantial portions of the Software. 14 + 15 + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 + SOFTWARE.
+57
node_modules/primer-tables/README.md
··· 1 + # Primer Marketing CSS Tables 2 + 3 + [![npm version](https://img.shields.io/npm/v/primer-tables.svg)](https://www.npmjs.org/package/primer-tables) 4 + [![Build Status](https://travis-ci.org/primer/primer.svg?branch=master)](https://travis-ci.org/primer/primer) 5 + 6 + > Styles to display tabular data for marketing websites at GitHub. 7 + 8 + This repository is a module of the full [primer][primer] repository. 9 + 10 + ## Documentation 11 + 12 + <!-- %docs 13 + title: Tables 14 + status: Deprecated 15 + --> 16 + 17 + **This component will be removed, and the `primer-tables` npm package deprecated, in Primer version 11.** 18 + 19 + <!-- %enddocs --> 20 + 21 + ## Install 22 + 23 + This repository is distributed with [npm][npm]. After [installing npm][install-npm], you can install `primer-tables` with this command. 24 + 25 + ``` 26 + $ npm install --save primer-tables 27 + ``` 28 + 29 + ## Usage 30 + 31 + The source files included are written in [Sass][sass] (`scss`) You can simply point your sass `include-path` at your `node_modules` directory and import it like this. 32 + 33 + ```scss 34 + @import "primer-tables/index.scss"; 35 + ``` 36 + 37 + You can also import specific portions of the module by importing those partials from the `/lib/` folder. _Make sure you import any requirements along with the modules._ 38 + 39 + ## Build 40 + 41 + For a compiled **css** version of this module, a npm script is included that will output a css version to `build/build.css` 42 + 43 + ``` 44 + $ npm run build 45 + ``` 46 + 47 + ## License 48 + 49 + MIT &copy; [GitHub](https://github.com/) 50 + 51 + [primer]: https://github.com/primer/primer 52 + [primer-support]: https://github.com/primer/primer-support 53 + [support]: https://github.com/primer/primer-support 54 + [docs]: http://primer.github.io/ 55 + [npm]: https://www.npmjs.com/ 56 + [install-npm]: https://docs.npmjs.com/getting-started/installing-node 57 + [sass]: http://sass-lang.com/
+1
node_modules/primer-tables/build/build.css
··· 1 + .data-table{width:100%;margin-top:16px;border-collapse:collapse;border:1px #e1e4e8 solid;box-shadow:0 1px 1px rgba(27,31,35,0.05)}.data-table th{font-weight:400;text-align:left}.data-table td,.data-table th{padding:16px;border-right:1px #e1e4e8 solid;border-bottom:1px #e1e4e8 solid}.data-table tbody th{width:25%}.data-table tbody th,.data-table tbody td{border-bottom-color:#e1e4e8}.data-table tbody tr:last-child th,.data-table tbody tr:last-child td{border-bottom:1px #e1e4e8 solid}
+1
node_modules/primer-tables/build/data.json
··· 1 + {"cssstats":{"size":487,"gzipSize":232,"humanizedSize":"487B","humanizedGzipSize":"232B","rules":{"total":6,"size":{"graph":[5,2,3,1,1,1],"max":5,"average":2.1666666666666665},"selectorByRuleSizes":[{"selector":".data-table","declarations":5},{"selector":".data-table td,.data-table th","declarations":3},{"selector":".data-table th","declarations":2},{"selector":".data-table tbody tr:last-child th,.data-table tbody tr:last-child td","declarations":1},{"selector":".data-table tbody th,.data-table tbody td","declarations":1},{"selector":".data-table tbody th","declarations":1}]},"selectors":{"total":9,"type":8,"class":9,"id":0,"pseudoClass":2,"pseudoElement":0,"values":[".data-table",".data-table th",".data-table td",".data-table th",".data-table tbody th",".data-table tbody th",".data-table tbody td",".data-table tbody tr:last-child th",".data-table tbody tr:last-child td"],"specificity":{"max":23,"average":13.88888888888889}},"declarations":{"total":13,"unique":12,"properties":{"width":["100%","25%"],"margin-top":["16px"],"border-collapse":["collapse"],"border":["1px #e1e4e8 solid"],"box-shadow":["0 1px 1px rgba(27,31,35,0.05)"],"font-weight":["400"],"text-align":["left"],"padding":["16px"],"border-right":["1px #e1e4e8 solid"],"border-bottom":["1px #e1e4e8 solid","1px #e1e4e8 solid"],"border-bottom-color":["#e1e4e8"]}},"mediaQueries":{"total":0,"unique":0,"values":[],"contents":[]}}}
+1
node_modules/primer-tables/build/index.js
··· 1 + module.exports = {"cssstats":{"size":487,"gzipSize":232,"humanizedSize":"487B","humanizedGzipSize":"232B","rules":{"total":6,"size":{"graph":[5,2,3,1,1,1],"max":5,"average":2.1666666666666665},"selectorByRuleSizes":[{"selector":".data-table","declarations":5},{"selector":".data-table td,.data-table th","declarations":3},{"selector":".data-table th","declarations":2},{"selector":".data-table tbody tr:last-child th,.data-table tbody tr:last-child td","declarations":1},{"selector":".data-table tbody th,.data-table tbody td","declarations":1},{"selector":".data-table tbody th","declarations":1}]},"selectors":{"total":9,"type":8,"class":9,"id":0,"pseudoClass":2,"pseudoElement":0,"values":[".data-table",".data-table th",".data-table td",".data-table th",".data-table tbody th",".data-table tbody th",".data-table tbody td",".data-table tbody tr:last-child th",".data-table tbody tr:last-child td"],"specificity":{"max":23,"average":13.88888888888889}},"declarations":{"total":13,"unique":12,"properties":{"width":["100%","25%"],"margin-top":["16px"],"border-collapse":["collapse"],"border":["1px #e1e4e8 solid"],"box-shadow":["0 1px 1px rgba(27,31,35,0.05)"],"font-weight":["400"],"text-align":["left"],"padding":["16px"],"border-right":["1px #e1e4e8 solid"],"border-bottom":["1px #e1e4e8 solid","1px #e1e4e8 solid"],"border-bottom-color":["#e1e4e8"]}},"mediaQueries":{"total":0,"unique":0,"values":[],"contents":[]}}}
+6
node_modules/primer-tables/index.scss
··· 1 + @warn "The entire primer-tables package will be removed in primer v11.0.0."; 2 + 3 + // support files 4 + @import "primer-support/index.scss"; 5 + @import "primer-marketing-support/index.scss"; 6 + @import "./lib/tables.scss";
+39
node_modules/primer-tables/lib/tables.scss
··· 1 + // stylelint-disable selector-max-type, selector-max-compound-selectors 2 + 3 + .data-table { 4 + width: 100%; 5 + margin-top: $spacer-3; 6 + border-collapse: collapse; 7 + border: $border; 8 + box-shadow: 0 1px 1px rgba($black, 0.05); 9 + 10 + th { 11 + font-weight: $font-weight-normal; 12 + text-align: left; 13 + } 14 + 15 + td, 16 + th { 17 + padding: $spacer-3; 18 + border-right: $border; 19 + border-bottom: $border; 20 + } 21 + 22 + tbody { 23 + th { 24 + width: 25%; 25 + } 26 + 27 + th, 28 + td { 29 + border-bottom-color: $border-gray; 30 + } 31 + 32 + tr:last-child { 33 + th, 34 + td { 35 + border-bottom: $border; 36 + } 37 + } 38 + } 39 + }
+74
node_modules/primer-tables/package.json
··· 1 + { 2 + "_from": "primer-tables@1.5.3", 3 + "_id": "primer-tables@1.5.3", 4 + "_inBundle": false, 5 + "_integrity": "sha512-ZTBG2qQvE9qKI8N7sdN39F8y5sckDRSFR4JkTVQqujrXwoK7kGeqdNXirKFSuzSyW9MnBt02tOTQ65xC0xl3sg==", 6 + "_location": "/primer-tables", 7 + "_phantomChildren": {}, 8 + "_requested": { 9 + "type": "version", 10 + "registry": true, 11 + "raw": "primer-tables@1.5.3", 12 + "name": "primer-tables", 13 + "escapedName": "primer-tables", 14 + "rawSpec": "1.5.3", 15 + "saveSpec": null, 16 + "fetchSpec": "1.5.3" 17 + }, 18 + "_requiredBy": [ 19 + "/primer-marketing" 20 + ], 21 + "_resolved": "https://registry.npmjs.org/primer-tables/-/primer-tables-1.5.3.tgz", 22 + "_shasum": "7c598a9a2d2291b02df50134c076ff4e08091a4f", 23 + "_spec": "primer-tables@1.5.3", 24 + "_where": "/Users/sophieshepherd/Desktop/projects/profile-generator/node_modules/primer-marketing", 25 + "author": { 26 + "name": "GitHub, Inc." 27 + }, 28 + "bugs": { 29 + "url": "https://github.com/primer/primer/issues" 30 + }, 31 + "bundleDependencies": false, 32 + "dependencies": { 33 + "primer-marketing-support": "1.5.6", 34 + "primer-support": "4.7.2" 35 + }, 36 + "deprecated": false, 37 + "description": "Styles to display tabular data for marketing websites at GitHub.", 38 + "files": [ 39 + "index.scss", 40 + "lib", 41 + "build" 42 + ], 43 + "homepage": "http://primer.github.io/", 44 + "keywords": [ 45 + "css", 46 + "github", 47 + "primer", 48 + "design-system", 49 + "style", 50 + "tables" 51 + ], 52 + "license": "MIT", 53 + "main": "build/index.js", 54 + "name": "primer-tables", 55 + "primer": { 56 + "category": "marketing", 57 + "module_type": "components" 58 + }, 59 + "repository": { 60 + "type": "git", 61 + "url": "https://github.com/primer/primer/tree/master/modules/primer-tables" 62 + }, 63 + "sass": "index.scss", 64 + "scripts": { 65 + "build": "../../script/npm-run primer-module-build index.scss", 66 + "lint": "../../script/lint-scss", 67 + "postpublish": "../../script/notify success", 68 + "prepare": "npm run build", 69 + "prepublishOnly": "../../script/notify pending", 70 + "test": "../../script/npm-run-all build lint" 71 + }, 72 + "style": "build/build.css", 73 + "version": "1.5.3" 74 + }
+73
package-lock.json
··· 149 149 "primer-support": "4.7.2" 150 150 } 151 151 }, 152 + "primer-marketing": { 153 + "version": "6.3.3", 154 + "resolved": "https://registry.npmjs.org/primer-marketing/-/primer-marketing-6.3.3.tgz", 155 + "integrity": "sha512-vmR/YkOlFnQVQSxluXe5lbkH+B7Z2tirgCDGVp+SD9Zs+FJ6YRELmw6cjm0okVkH9205qcMvy9INOunkhKrktw==", 156 + "requires": { 157 + "primer-marketing-buttons": "1.0.13", 158 + "primer-marketing-support": "1.5.6", 159 + "primer-marketing-type": "1.4.13", 160 + "primer-marketing-utilities": "1.7.3", 161 + "primer-page-headers": "1.5.3", 162 + "primer-page-sections": "1.5.3", 163 + "primer-support": "4.7.2", 164 + "primer-tables": "1.5.3" 165 + } 166 + }, 167 + "primer-marketing-buttons": { 168 + "version": "1.0.13", 169 + "resolved": "https://registry.npmjs.org/primer-marketing-buttons/-/primer-marketing-buttons-1.0.13.tgz", 170 + "integrity": "sha512-1MzzrG/68zaEcQypG50uELwQ4MHH9b8aTy3jXxayZRc1qvZaLh5SEcSIHWe5lMIZk8qrtYhr22py9+kibyTKIQ==", 171 + "requires": { 172 + "primer-support": "4.7.2" 173 + } 174 + }, 175 + "primer-marketing-support": { 176 + "version": "1.5.6", 177 + "resolved": "https://registry.npmjs.org/primer-marketing-support/-/primer-marketing-support-1.5.6.tgz", 178 + "integrity": "sha512-YU8ein52s/W+s4a4hHZZJbHURfz2FLI5ItrUxqaqJjcT0O2bALP/JbuCZDrbvWxuOSK4kbF22ANmmMGWFIzp/Q==" 179 + }, 180 + "primer-marketing-type": { 181 + "version": "1.4.13", 182 + "resolved": "https://registry.npmjs.org/primer-marketing-type/-/primer-marketing-type-1.4.13.tgz", 183 + "integrity": "sha512-ke6l3zgc4mF5ArDzZB1TJ5VHbZG2/uwekVROLQOK4v7XI0MkYZWA9tI+k8UhaFLSsw0vGqxM2ibKUzsQH61C8g==", 184 + "requires": { 185 + "primer-marketing-support": "1.5.6", 186 + "primer-support": "4.7.2" 187 + } 188 + }, 189 + "primer-marketing-utilities": { 190 + "version": "1.7.3", 191 + "resolved": "https://registry.npmjs.org/primer-marketing-utilities/-/primer-marketing-utilities-1.7.3.tgz", 192 + "integrity": "sha512-YYDPgyC0G65tPHwZ6ktxfEAqUkJlU2sZjzdcH7thlcg83/UqiZfgmgiiBAxdMjrACY7Q2X9HaHicr5F4rmPhPw==", 193 + "requires": { 194 + "primer-marketing-support": "1.5.6", 195 + "primer-support": "4.7.2" 196 + } 197 + }, 152 198 "primer-navigation": { 153 199 "version": "1.5.11", 154 200 "resolved": "https://registry.npmjs.org/primer-navigation/-/primer-navigation-1.5.11.tgz", ··· 157 203 "primer-support": "4.7.2" 158 204 } 159 205 }, 206 + "primer-page-headers": { 207 + "version": "1.5.3", 208 + "resolved": "https://registry.npmjs.org/primer-page-headers/-/primer-page-headers-1.5.3.tgz", 209 + "integrity": "sha512-SVgAnr1jz/8qNhr+LsQayHGGICi1pCfBJV2R+zhcooDJC29ddSoTW+LpwvBj1P68c7sJfaMPRmlcq0hUGGG/Pw==", 210 + "requires": { 211 + "primer-marketing-support": "1.5.6", 212 + "primer-support": "4.7.2" 213 + } 214 + }, 215 + "primer-page-sections": { 216 + "version": "1.5.3", 217 + "resolved": "https://registry.npmjs.org/primer-page-sections/-/primer-page-sections-1.5.3.tgz", 218 + "integrity": "sha512-xaj6v+v3FvaSMVFDZAYsrObkvOviPwxYZt0rrkMeoyhrMVG2uB3nD3Kmu3st9UbwobdXjMTSKPkKBcarckwhuw==", 219 + "requires": { 220 + "primer-marketing-support": "1.5.6", 221 + "primer-support": "4.7.2" 222 + } 223 + }, 160 224 "primer-pagination": { 161 225 "version": "1.0.7", 162 226 "resolved": "https://registry.npmjs.org/primer-pagination/-/primer-pagination-1.0.7.tgz", ··· 175 239 "resolved": "https://registry.npmjs.org/primer-table-object/-/primer-table-object-1.4.13.tgz", 176 240 "integrity": "sha512-JoU/T1aubSg3cvEXh5K95X63W5bJLFlvDflVWMc8QJKiHBPmICH7yccsGI+ybhEUnd7MUD+BEXKgQwM+Iinv5g==", 177 241 "requires": { 242 + "primer-support": "4.7.2" 243 + } 244 + }, 245 + "primer-tables": { 246 + "version": "1.5.3", 247 + "resolved": "https://registry.npmjs.org/primer-tables/-/primer-tables-1.5.3.tgz", 248 + "integrity": "sha512-ZTBG2qQvE9qKI8N7sdN39F8y5sckDRSFR4JkTVQqujrXwoK7kGeqdNXirKFSuzSyW9MnBt02tOTQ65xC0xl3sg==", 249 + "requires": { 250 + "primer-marketing-support": "1.5.6", 178 251 "primer-support": "4.7.2" 179 252 } 180 253 },
+2 -1
package.json
··· 18 18 "homepage": "https://github.com/github/profile-generator#readme", 19 19 "dependencies": { 20 20 "github-calendar": "^1.3.1", 21 - "primer-core": "^6.10.9" 21 + "primer-core": "^6.10.9", 22 + "primer-marketing": "^6.3.3" 22 23 } 23 24 }