From a8a264290ea4025399f258bf76538f2f830577a7 Mon Sep 17 00:00:00 2001 From: Leonardo Mendoza Fernadez Date: Tue, 7 May 2024 19:12:58 -0600 Subject: [PATCH] Clone wp post --- dist/combined_styles.css | 1119 -------------------------------------- dist/index.html | 0 2 files changed, 1119 deletions(-) delete mode 100644 dist/combined_styles.css delete mode 100644 dist/index.html diff --git a/dist/combined_styles.css b/dist/combined_styles.css deleted file mode 100644 index 5d49662..0000000 --- a/dist/combined_styles.css +++ /dev/null @@ -1,1119 +0,0 @@ -/* CSS from https://info.qa.orcid.org/wp-content/themes/orcid-outreach-pro/style.css */ - -/* - Theme Name: ORCID Outreach Pro - Theme URI: http://my.studiopress.com/themes/outreach/ - Description: A mobile responsive and HTML5 theme built for the Genesis Framework. Forked from Studiopress outreach theme.http://my.studiopress.com/themes/outreach/ - Author: ORCID - Author URI: http://www.studiopress.com/ - Version: 3.1 - - Tags: black, green, white, one-column, two-columns, three-columns, left-sidebar, right-sidebar, responsive-layout, custom-menu, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, premise-landing-page - - Template: genesis - Template Version: 2.1 - - License: GPL-2.0+ - License URI: http://www.gnu.org/licenses/gpl-2.0.html -*/ - -/* Table of Contents - - - HTML5 Reset - - Baseline Normalize - - Box Sizing - - Float Clearing - - Defaults - - Typographical Elements - - Headings - - Objects - - Gallery - - Forms - - Tables - - Structure and Layout - - Site Containers - - Column Widths and Positions - - Column Classes - - Common Classes - - Avatar - - Genesis - - Search Form - - Titles - - WordPress - - Widgets - - Featured Content - - Plugins - - Genesis eNews Extended - - Genesis Responsive Slider - - Gravity Forms - - Jetpack - - Mailpoet - - Publishpress - - Site Header - - Title Area - - Widget Area - - Site Navigation - - Accessibility - - Header Navigation - - Primary Navigation - - Secondary Navigation - - Responsive Menu - - Content Area - - Home Page - - Entries - - Entry Meta - - After Entry - - Pagination - - Comments - - Sidebars - - Sub Foooter - - Footer Widgets - - Site Footer - - Media Queries - - Retina Display - - Retina - - Max-width: 1139px - - Max-width: 1023px - - Max-width: 767px - -*/ - - -/* GLOBAL STYLING VARIABLES */ - -:root { - /* ORCID COLOURS */ - /* ORCID brand primary - Green */ - --brand-primary-lightest: rgb(245, 249, 232); - --brand-primary-light: rgb(212, 231, 161); - --brand-primary: rgb(166, 206, 57); - --brand-primary-dark: rgb(127, 170, 38); - --brand-primary-darkest: rgb(68, 116, 5); - - /* ORCID brand secondary - Blue */ - --brand-secondary-lightest: rgb(208, 243, 255); - --brand-secondary-light: rgb(142, 194, 219); - --brand-secondary: rgb(46, 127, 159); - --brand-secondary-dark: rgb(8, 92, 119); - --brand-secondary-darkest: rgb(0, 52, 73); - - /* ORCID background greys */ - --ui-background-lightest: rgb(250, 250, 250); - --ui-background-light: rgb(245, 245, 245); - --ui-background: rgb(224, 224, 224); - --ui-background-dark: rgb(97, 97, 97); - --ui-background-darkest: rgb(33, 33, 33); - - /* TEXT - Colours for copy */ - /* DARK */ - --text-dark-high: rgba(0, 0, 0, .9); - --text-dark-med: rgba(0, 0, 0, .6); - --text-dark-low: rgba(0, 0, 0, .3); - --copy-dark: var(--text-dark-high); - /* LIGHT */ - --text-light-high: rgba(255, 255, 255, .9); - --text-light-med: rgba(255, 255, 255, .6); - --text-light-low: rgba(255, 255, 255, .3); - --copy-light: var(--text-light-high); - - - /* SPACING - Standard spacing amounts based on factors of 8 */ - --space: 8px; - --space-half: 4px; - --space-quarter: 2px; - --space-double: 16px; - --space-triple: 24px; - --space-quad: 32px; - --space-quint: 40px; - --space-oct: 64px; - - /* BORDER RADIUS - Curved corners */ - --radius: 4px; - --radius-tight: 2px; - --radius-loose: 8px; - - /* THICKNESS - Use for borders and separators */ - --thin: 1px; - --medium: 2px; - --thick: 4px; - --chunky: 8px; -} - -/* -HTML5 Reset ----------------------------------------------------------------------------------------------------- */ - -/* Baseline Normalize - normalize.css v2.1.3 | MIT License | git.io/normalize ---------------------------------------------- */ - -figure,main{display:block}a{background:transparent}a:focus{outline:thin dotted}a:active,a:hover{outline:0}img{border:0}figure{margin:0} - -/* Additional wrap for code blocks so they don't spill over FAQ borders*/ - - - -/* Box Sizing ---------------------------------------------- */ - -* { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} - - -/* Float Clearing ---------------------------------------------- */ - - -/* -Defaults ----------------------------------------------------------------------------------------------------- */ - -/* Typographical Elements ---------------------------------------------- */ - - -a { - -webkit-transition: all 0.1s ease-in-out; - -moz-transition: all 0.1s ease-in-out; - -ms-transition: all 0.1s ease-in-out; - -o-transition: all 0.1s ease-in-out; - transition: all 0.1s ease-in-out; -} - - - -/* Style text highlighted by the user */ - -/* DD 16/10/20 NOTE: This styling is currently overridden by a rule for Atomic blocks accordions on line 1180 */ - -::selection, -::-moz-selection { - background-color: var(--brand-secondary-lightest); -} - -/* LINKS - DEFAULT */ - -/* Rob 31/3/23 not sure it didn't occur to me before but visited psuedo style is causing havoc. */ - -a { - color: var(--brand-secondary-dark); -} - -/* a:hover, -a:focus { - color: var(--brand-primary-darkest); -} */ - -a:active { - font-weight: 600; -} - -/* PARAGRAPHS */ - -p { - margin: 0 0 var(--space-triple); - padding: 0; -} - -/* LISTS - DEFAULT -Ordered and unordered */ - -/* Position lists neatly */ - -ul { - margin: 0 0 var(--space-double) var(--space-quad); - padding: 0; -} - -/* Add some space between list items */ -li { - list-style-type: none; - margin-bottom: var(--space) -} - -/* Remove the bottom margin from the last item in the list */ -li:last-of-type { - margin-bottom: 0; -} - -/* BLOCKQUOTES */ - -/* Add quote mark before the blockquote */ - -/* Keep citations simple */ - -/* --------------------------------------------- -DOWNLOAD LINKS (.wp-block-file) ---------------------------------------------- */ - -/* Headings ---------------------------------------------- */ - - -h4 { - font-stretch: normal; - font-style: normal; - line-height: 1.4; - letter-spacing: 0.5px; -} - -/* Heading 1 - Large headings mostly used for page titles */ - -/* Heading 2 - Commonly used sub-heading within page content */ - -/* Heading 3 - Sub-headings within sections */ - -/* There's no real need or benefit in styling these lower headings individually */ -h4 { - font-size: 16px; -} - -/* Objects ---------------------------------------------- */ - - -img { - max-width: 100%; -} - -img { - height: auto; -} - -/* Gallery ---------------------------------------------- */ - -/* Forms ---------------------------------------------- */ - -/* FIELD DEFAULT STYLES */ - -/* Set the text colour in standard fields to be --copy-dark (90% black) -NOTE: If new fields of a different type are added then we may well need to extend -this rule further to cover them all */ - -/* PLaceholder text styling */ - -::-moz-placeholder { - color: var(--text-dark-med); - opacity: 1; -} - -::-webkit-input-placeholder { - color: var(--text-dark-med); -} - -/* BUTTON DEFAULT STYLES */ -/* Rob note 15/07/2021 the !important here is because genesis injects some inline styles */ -/* ROB 10/07/22 removed padding and border styles as they were playing havoc with hovers in events and file buttons */ - - -.wp-block-button__link, -.wp-block-button { - background-color: var(--brand-secondary-darkest); - border-radius: 4px; - color: #fff; - cursor: pointer; - text-transform: uppercase; - letter-spacing: 0.5px; - width: auto; - text-decoration: none; - margin-bottom: 0; - display: inline-block; - font-size:inherit; -} - -/* Hover state */ - -.wp-block-button__link:hover { - color:#fff; - background-color: var(--brand-primary-dark); -} - -/* Active state */ - -.wp-block-button__link:active { - background-color: var(--brand-primary); - border-color: var(--brand-primary); - color:#fff; -} - -/* Focus state */ - -.wp-block-button__link:focus { - border-color: var(--brand-primary); -} - - - -.wp-block-button__link{ - color: #fff !important; -} - -/* Hide any Webkit-inserted search field elements */ - -/* Specific styles for the sign in button */ - - - -/* Cookie preference button */ - - - -/* ROB 10/07/22 Events styles have been moved to their own specific css files */ - -/* These are styles for the speaker box blocks on events pages */ -/* Tables ---------------------------------------------- */ - -/* I've kept in rules for both standard HTML tables entered straight into WordPress and those created through the TablePress plugin -NOTE: Any CSS specifically targetting TablePress tables also needs to be added to the 'Custom CSS' panel at /wp-admin/admin.php?page=tablepress_options */ - -/* Give text in tables some breathing room */ - -/* Make table headers more defined , ROB 22/02/22 give headers bold font*/ - -/* Add some space around the contents of each cell */ - -/* Remove unwanted borders */ - -/* Stripe odd rows with a light green */ -/* 22/02/22 ROB removed Tablepress styles here and added specificity for wordpress styles as there were conflicts */ - -/* Easy FAQS Container overflow so tables display correctly */ - - -/* NOTICE BLOCKS *gb-notice-title* Unfortunatly I have had to use !important here quite a lot to override some inline styles RJB 16-04-21 */ - - -/* Figure Captions ------------------------------------------------------------- */ - -/* -Structure and Layout ----------------------------------------------------------------------------------------------------- */ - -/* Site Containers ---------------------------------------------- */ - -/* Column Widths and Positions ---------------------------------------------- */ - -/* Wrapping div for .content and .sidebar-primary */ - -/* Content */ - -/* DD 16/10/20 NOTE: We might want to revisit this to get pages without a sidebar looking nice & tight */ - -/* Primary Sidebar */ - -/* Secondary Sidebar */ - -/* Column Classes - Link: http://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css ---------------------------------------------- */ - -.first { - clear: both; - margin-left: 0; -} - - -/* -Common Classes ----------------------------------------------------------------------------------------------------- */ - -/* Avatar ---------------------------------------------- */ - - - -/* Genesis ---------------------------------------------- */ - -/* Search Form ---------------------------------------------- */ - -/* DD 16/10/20 NOTE: I don't think we need most of this any more. I've left it here for the time being just in case! */ - -/* .search-form { - overflow: hidden; -} - -.site-header .search-form { - float: right; - margin-top: 12px; -} - -.entry-content .search-form, -.site-header .search-form { - width: 50%; - -} - -.genesis-nav-menu .search input[type="submit"], -.widget_search input[type="submit"] { - border: 0; - clip: rect(0, 0, 0, 0); - margin: -1px; -}*/ - -/* .search-form input[type="search"] { - width: 180px; - margin-right:10px; - color: rgba(0, 0, 0, 0.9); -} */ - -/* Titles ---------------------------------------------- */ - -/* Let the content titles inherit the basic link styling */ - -/* Style the sidebar widget titles */ -/* DD NOTE 23/10/20 - We might want to move this to be closer to the widget styling */ - -/* WordPress ---------------------------------------------- */ - - -/* -Widgets ----------------------------------------------------------------------------------------------------- */ - -/* Remove the default margins from widget lists */ - -/* Featured Content ---------------------------------------------- */ - - -/* -Plugins ----------------------------------------------------------------------------------------------------- */ - -/* Genesis eNews Extended ---------------------------------------------- */ - -/* Genesis Responsive Slider ------------------------------------------------------------- */ - -/* Jetpack ---------------------------------------------- */ - -/* ROB 08-02-2022 EU Cookie law banner adittional styles to make sure it floats ablove the zendesk widget and matches theme !important added for Prod as it get overridden there by Jetpack */ - - - -/* TEAM PROFILES */ -/* NOTE: We use the Genesis profile block on the Team page to give everyone an author bio and a link to their ORCID record */ -/* This override is solely to avoid having to update every profile with a custom icon colour in the block config */ - -/* ACCORDIONS ---------------------------------------------- */ -/* NOTE: These were originally Atomic blocks but they've been renamed to Genesis blocks */ -/* Annoyingly there's a default block stylesheet that gets loaded after the main one with some style rules for accordions. We need to use !important to overwrite these! */ - -/* Space out multiple accordion blocks stacked together */ - -/* Spacing for a solitary accordion block */ - -/* Style the accordion title - This is the header area that you click to expand more information. */ - -/* Style the accordion title directly after the wrapping element. This means we don't style any nested accordions */ - -/* The WP accordion block uses the HTML
element that comes with a 'free' drop down arrow.*/ -/* Webkit browsers display the arrow but Firefox doesn't recognise it. For now we are simply disabling it for all */ - -/* Hide the arrow marker on Webkit */ - -/* FAQs */ - - -/* New Ultimate FAQ styles to bring in line with the old. I am not overriding the default symbol for now. Need to look how to do that nicely RB 17/11/22 */ - - -/*Mailpoet ----------------------------------------- */ - -/* Style the Mailpoet submission form. I'm afraid we're going to have to use some !important overrides in here :-( -Most of the styling has been added in the Custom CSS section of the Mailpoet plugin config: /wp-admin/admin.php?page=mailpoet-form-editor&id=1 */ - -/* Rob note 15/07/21 I have moved the styles here because they kept getting overridden so we got some !important in here instead */ - - -/* Get the spacing right on the Mailpoet button */ - -/* Input */ - -/* columns */ -/* space between columns */ -/* input wrapper (label + input) */ -/* labels */ - -/* inputs */ - -/* PublishPress Multi Authors */ - - -/* EDIT ROB 14-07-21 added specificity for Publishpress pligin author avatars */ -/* NOTE Rob 15/07/21 the !important here is to overide the inline border stlyes the PP injects */ - - - - -/* -Site Header ----------------------------------------------------------------------------------------------------- */ - -/* Title Area ---------------------------------------------- */ - -/* Display the ORCID logo and strapline */ - -/* Make the logo link a fixed height */ - -/* Stop the logo and description pushing down too far */ - -/* Widget Area ---------------------------------------------- */ - -/* Bolt the widget area to the right side of the page */ - -/* Target the individual sections elements in the header widget area */ - -/* Remove margin from any widgets in the header and make them inline */ - -/* -Site Navigation ----------------------------------------------------------------------------------------------------- */ - -/* DD NOTE 30/08/20: I genuinely can't see what this block of code is doing so I've commented it out for the time being. -I think we aren't using it any more as it has been superseded by the Mega Menu but I can't be sure there aren't any rules -tucked away in there that we need to keep. */ - -/* .genesis-nav-menu { - clear: both; - font-size: 18px; - line-height: 1.33; - width: 82%; - background-color: #fff; -} - -.genesis-nav-menu, -.genesis-nav-menu a { - color: #2e7f9f; -} - -.genesis-nav-menu .menu-item { - display: inline-block; - text-align: left; -} - -.genesis-nav-menu a { - display: block; - padding: 18px 20px; -} - -.genesis-nav-menu .current-menu-item a{ - background-color: #fff; - color: #2e7f9f; -} - -.genesis-nav-menu .sub-menu .current-menu-item > a:hover, -.genesis-nav-menu a:hover, -.genesis-nav-menu li:hover > a { - background-color:rgba(255, 255, 255, 0.11); -} - -.genesis-nav-menu > .menu-item > a { - text-transform: uppercase; -} - -.genesis-nav-menu .sub-menu { - border-top: 1px solid #fff; - left: -9999px; - opacity: 0; - position: absolute; - -webkit-transition: opacity .4s ease-in-out; - -moz-transition: opacity .4s ease-in-out; - -ms-transition: opacity .4s ease-in-out; - -o-transition: opacity .4s ease-in-out; - transition: opacity .4s ease-in-out; - width: 200px; - z-index: 999; -} - -.genesis-nav-menu .sub-menu a { - background-color: #eee; - border: 1px solid #fff; - border-top: none; - color: #2e7f9f; - font-size: 12px; - padding: 14px 20px; - position: relative; - width: 200px; -} - -.genesis-nav-menu .sub-menu .sub-menu { - margin: -48px 0 0 199px; -} - -.genesis-nav-menu .menu-item:hover { - position: static; -} - -.genesis-nav-menu .menu-item:hover > .sub-menu { - left: auto; - opacity: 1; -} - -.genesis-nav-menu > .first > a { - padding-left: 0; -} - -.genesis-nav-menu > .last > a { - padding-right: 0; -} - -.genesis-nav-menu > .right { - display: inline-block; - float: right; - list-style-type: none; - padding: 0; - text-transform: uppercase; -} - -.genesis-nav-menu > .date, -.genesis-nav-menu > .right > a { - display: inline-block; - padding: 18px 20px; -} - -.genesis-nav-menu .right:hover > a { - background: none; - color: #2e7f9f; -} - -.genesis-nav-menu .right > a:hover { - background: #fff; - color: #2e7f9f; -} - -.genesis-nav-menu > .search { - padding: 9px 0 0; -} - -.genesis-nav-menu input[type="search"] { - font-size: 14px; - padding: 10px 16px; -} */ - -/* Additional CSS for Accessibility settings -* Accessible Menu -* Screen Reader Text -* Skip Links - -------------------------------------------------*/ - -/* ## Accessible Menu - ---------------------------------------------- */ - -/* ## Screen reader text - ---------------------------------------------- */ - -.screen-reader-text, -.screen-reader-text span { - border: 0; - clip: rect(0, 0, 0, 0); - height: 1px; - overflow: hidden; - position: absolute !important; - width: 1px; - word-wrap: normal !important; -} - -.screen-reader-text:focus { - /* background: #fff; */ - box-shadow: 0 0 2px 2px var(--brand-primary-lightest); - /* clip: auto !important; */ - /* color: #333; */ - /* display: block; */ - /* font-size: 1em; */ - /* font-weight: bold; */ - /* height: auto; */ - /* padding: 15px 23px 14px; */ - /* text-decoration: none; */ - /* width: auto; */ - z-index: 100000; /* Above WP toolbar. */ -} - -/* Skip Links - ----------------------------------------------------------------------------------------------------- */ - -/* Site Header Navigation ---------------------------------------------- */ - -/* Primary Navigation ---------------------------------------------- */ - -/* Secondary Navigation ---------------------------------------------- */ - -/* Responsive Menu ---------------------------------------------- */ - - -/* -Content Area ----------------------------------------------------------------------------------------------------- */ - -/* Home Page ---------------------------------------------- */ - -/* Entries ---------------------------------------------- */ - -/* Lists in article entries */ - -/* .entry-content ol, -.entry-content ul { - margin-left: var(--space-quad); -} */ - -/* ROB 22-03-22 removing bullet styles from queryloop block entries */ - -/* Example code blocks */ - -/* Remove the background color from the code text examples */ - -/* Entry Meta ---------------------------------------------- */ - -/* Default styles for meta information */ - -/* After Entry ---------------------------------------------- */ - -/* Pagination ---------------------------------------------- */ - -/* Push the pagination away from the items before it */ - -/* Remove standard list padding from the pagination */ - -/* Display the list items inline */ - -/* Default styling for pagination follows the standard button rules */ - -/* Highlight with green when hovering */ - -/* Turn the active 'page' a darker blue */ - -/* Comments ---------------------------------------------- */ - - -/* -Sidebars ----------------------------------------------------------------------------------------------------- */ - - -/* -Sub Footer ----------------------------------------------------------------------------------------------------- */ - -/* .sub-footer { - background-color: #f2f6e9; - padding: 60px 0 30px; -} - -.sub-footer-left { - float: left; - width: 785px; -} - -.sub-footer-right { - float: right; - font-size: 14px; - width: 235px; -} - -.sub-footer-left .entry-title { - font-size: 30px; -} */ - - -/* -Footer Widgets ----------------------------------------------------------------------------------------------------- */ - - -/* -Site Footer ----------------------------------------------------------------------------------------------------- */ - -/* Style the main site footer */ - -/* The container for the ORCID logo and social icons */ - -/* Add a little space around the social icons */ - -/* Remove the default