Making WordPress.org

Changeset 11564


Ignore:
Timestamp:
02/16/2022 09:07:59 AM (3 years ago)
Author:
dd32
Message:

Make: Attempt to increase the font size.

I expect there are some things broken, so please report them on the ticket below.

See #5353.

Location:
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-breathe
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-breathe/functions.php

    r11557 r11564  
    6868    wp_enqueue_style( 'p2-breathe', get_template_directory_uri() . '/style.css' );
    6969
    70     wp_enqueue_style( 'wporg-breathe', get_stylesheet_uri(), array( 'p2-breathe' ), '20220215b' );
     70    wp_enqueue_style( 'wporg-breathe', get_stylesheet_uri(), array( 'p2-breathe' ), '20220216' );
    7171}
    7272add_action( 'wp_enqueue_scripts', __NAMESPACE__ . '\styles', 11 );
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-breathe/style.css

    r11557 r11564  
    2626.site-header .site-title {
    2727    font-family: 'Open Sans', sans-serif;
     28    font-size: var(--wp--preset--font-size--normal);
     29}
     30
     31p, ul, ol,
     32#primary,
     33#secondary aside {
     34    font-size: inherit;
     35}
     36
     37h1 {
     38    font-size: 1.8em;
     39}
     40
     41h2 {
     42    font-size: 1.6em;
     43}
     44
     45h3 {
     46    font-size: 1.4em;
     47}
     48
     49h4 {
     50    font-size: 1.2em;
     51}
     52
     53.entry-content .reports.ticket-reports {
     54    font-size: var(--wp--preset--font-size--small);
    2855}
    2956
     
    115142    box-sizing: border-box;
    116143    margin: 0 auto;
    117     max-width: 960px;
     144    max-width: 1024px;
    118145    padding: 0 10px;
    119146}
     
    139166.site-header .site-title a {
    140167    color: #fff;
    141     font-size: 28px;
     168    font-size: 26px;
    142169    font-weight: 300;
    143170    line-height: 1;
     
    234261.navigation-main a:visited {
    235262    color: rgba(255, 255, 255, 0.8);
    236     font-size: 14px;
     263    font-size: var(--wp--preset--font-size--small);
    237264}
    238265
     
    420447  padding: 0;
    421448  font-weight: 400;
    422   font-size: 2.2em;
     449  font-size: 1.5em;
    423450  line-height: 1.1;
    424451  text-transform: none;
     
    792819
    793820.make-welcome .entry-content {
    794     font-size: 14px;
    795821    color: #333;
    796822    line-height: 1.45;
     
    816842.make-welcome .entry-content .welcome p:first-child {
    817843    font-weight: normal;
    818     font-size: 18px;
     844    font-size: 1.125em;
    819845    font-family: "Open Sans", serif;
    820846}
     
    844870.make-welcome .entry-meta .post-edit-link {
    845871    margin-right: 10px;
    846     font-size: 1.2em;
    847872    font-weight: normal;
    848873    padding-right: 15px;
     
    867892}
    868893
    869 @media screen and (min-width: 960px) {
     894@media screen and (min-width: 1024px) {
    870895    .make-welcome .entry-content p {
    871896        display: block;
     
    9911016.contributor-name {
    9921017    padding-top: 14px;
    993     font-size: 1.8rem;
     1018    font-size: 1.2rem;
    9941019}
    9951020
     
    14231448.post-type-archive-handbook #main,
    14241449.single-handbook #main {
    1425     max-width: 960px;
     1450    max-width: 1024px;
    14261451    margin: 0 auto;
    14271452    display: flex;
Note: See TracChangeset for help on using the changeset viewer.