Make WordPress Core

Ticket #25830: 25830.diff

File 25830.diff, 3.3 KB (added by iamtakashi, 12 years ago)
  • wp-content/themes/twentyfourteen/style.css

     
    4242 * 8.0 - Footer
    4343 * 9.0 - Featured Content
    4444 * 10.0 - Media Queries
     45 * 11.0 - Print
    4546 * -----------------------------------------------------------------------------
    4647 */
    4748
     
    38833884        .site-content blockquote.alignright {
    38843885                margin-right: -18%;
    38853886        }
     3887}
     3888
     3889
     3890/**
     3891 * 11.0 Print
     3892 * -----------------------------------------------------------------------------
     3893 */
     3894
     3895@media print {
     3896        body {
     3897                background: none !important;
     3898                color: #2b2b2b;
     3899                font-size: 12pt;
     3900        }
     3901
     3902        .site,
     3903        .site-header,
     3904        .hentry,
     3905        .site-content .entry-header,
     3906        .site-content .entry-content,
     3907        .site-content .entry-summary,
     3908        .site-content .entry-meta,
     3909        .page-content,
     3910        .archive-header,
     3911        .page-header,
     3912        .contributor-info,
     3913        .comments-area,
     3914        .attachment .entry-attachment .attachment {
     3915                max-width: 100%;
     3916        }
     3917
     3918        #site-header img,
     3919        .search-toggle,
     3920        .site-navigation,
     3921        .site-content nav,
     3922        .edit-link,
     3923        .page-links,
     3924        .widget-area,
     3925        .more-link,
     3926        .post-format-archive-link,
     3927        .comment-respond,
     3928        .comment-list .reply,
     3929        .comment-reply-login,
     3930        #secondary,
     3931        .site-footer,
     3932        .slider-control-paging,
     3933        .slider-direction-nav {
     3934                display: none;
     3935        }
     3936
     3937        .site-title a,
     3938        .entry-meta,
     3939        .entry-meta a,
     3940        .featured-content .hentry,
     3941        .featured-content a {
     3942                color: #2b2b2b;
     3943        }
     3944
     3945        .site-header,
     3946        .post-thumbnail,
     3947        a.post-thumbnail:hover,
     3948        .site-content .entry-header,
     3949        .site-footer,
     3950        .featured-content .entry-header {
     3951                background: transparent;
     3952        }
     3953
     3954        .header-main {
     3955                padding: 48px 10px;
     3956        }
     3957
     3958        .site-title {
     3959                float: none;
     3960                font-size: 19pt;
     3961        }
     3962
     3963        .content-area {
     3964                padding-top: 0;
     3965        }
     3966
     3967        .list-view .site-content .hentry {
     3968                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
     3969                margin-bottom: 48px;
     3970                padding-bottom: 24px;
     3971        }
     3972
     3973        .post-thumbnail {
     3974                min-height: 0;
     3975        }
     3976
     3977        .post-thumbnail img {
     3978                margin: 0 10px 24px;
     3979        }
     3980
     3981        .site-content .has-post-thumbnail .entry-header,
     3982        .site-content .format-standard .entry-header {
     3983                padding-top: 0;
     3984        }
     3985
     3986        .entry-content a,
     3987        .entry-summary a,
     3988        .page-content a,
     3989        .comment-content a {
     3990                text-decoration: none;
     3991        }
     3992
     3993        .site-content footer.entry-meta {
     3994                margin: 24px auto;
     3995        }
     3996
     3997        .tag-links a {
     3998                color: #fff;
     3999        }
     4000
     4001        .singular .hentry.format-standard,
     4002        .singular .hentry.has-post-thumbnail {
     4003                margin-top: 0;
     4004        }
     4005
     4006        .gallery-columns-1.gallery-size-medium,
     4007        .gallery-columns-1.gallery-size-thumbnail,
     4008        .gallery-columns-2.gallery-size-thumbnail,
     4009        .gallery-columns-3.gallery-size-thumbnail {
     4010                display: block;
     4011        }
     4012
     4013        .archive-title,
     4014        .page-title {
     4015                margin: 0 10px 48px;
     4016        }
     4017
     4018        .featured-content {
     4019                background: none;
     4020        }
     4021
     4022        .featured-content .hentry {
     4023                margin-bottom: 48px;
     4024        }
     4025
     4026        .featured-content .post-thumbnail,
     4027        .slider .featured-content .post-thumbnail {
     4028                padding-top: 0
     4029        }
     4030
     4031        .featured-content .post-thumbnail img {
     4032                position: relative;
     4033        }
     4034
     4035        .featured-content .entry-header {
     4036                padding: 0 10px 24px;
     4037        }
     4038
     4039        .featured-content .entry-meta {
     4040                font-size: 9pt;
     4041                margin-bottom: 11px;
     4042        }
     4043
     4044        .featured-content .cat-links {
     4045                font-weight: 900;
     4046        }
     4047
     4048        .featured-content .entry-title {
     4049                font-size: 25pt;
     4050                line-height: 36px;
     4051        }
    38864052}
     4053 No newline at end of file