Template:Notice/styles.css

    来自真佛百科
    < Template:Notice这是此页面的最新修订,它没有已核准修订。
    /**
     * [[Category:Template style pages]]
     */
    .template-notice {
    	background-color: #f8f9fa;
    	border: 1px solid #a2a9b1;
    	border-top: .5em solid #a2a9b1;
    	display: table;
    	margin: 1em 0;
    	overflow: hidden;
    }
    .template-notice-image,
    .template-notice-logo {
    	display: table-cell;
    	padding: .5em;
    	vertical-align: middle;
    	white-space: nowrap;
    }
    .template-notice-image img,
    .template-notice-logo img {
    	vertical-align: middle;
    }
    .template-notice-content {
    	display: table-cell;
    	padding: .5em;
    	vertical-align: middle;
    	width: 100%;
    }
    .template-notice-title {
    	font-weight: bold;
    	margin-right: 1em;
    }
    .template-notice-more {
    	display: none;
    	cursor: pointer;
    }
    .template-notice-foot {
    	font-size: smaller;
    }
    
    /**
     * Dark mode
     */
    body.poncho-dark-mode .template-notice {
    	background: #303134;
    	border-color: #3c4043;
    	color: #bdc1c6;
    }
    
    /**
     * Mobile and small screens
     */
    @media screen and (max-width:600px) {
    	.template-notice {
    		margin: .5em 0;
    		width: 100%;
    	}
    	.template-notice-logo {
    		display: none;
    	}
    	.template-notice-more {
    		display: inline;
    	}
    	.template-notice-title ~ .template-notice-text,
    	.template-notice-title ~ .template-notice-foot {
    		display: none;
    	}
    }