跳转到内容

中医百科:首页/styles.css:修订间差异

勤求古训,博采众方
无编辑摘要
无编辑摘要
第37行: 第37行:
  * 分割线
  * 分割线
  ******************************/
  ******************************/
.title-flex {
.title{
        display: flex;
  position:relative;
        align-items: center;
  font-size:16px;
        font-size: 0.4rem;
  color:#999;
        color: pink;
  /* 溢出隐藏 重要*/
    }
  overflow:hidden;
 
  text-align:center;
    .title-flex::before,
}
    .title-flex::after {
.title::before,.title::after{
        content: '';
content:'';
        flex: 1;
display:inline-block;
        height: 1px;
width:100%;
        background: pink;
height:1px;
    }
color:#ccc;
 
position:absolute;
    .title-flex::before {
top:50%;
        margin-right: 0.25rem;
}
    }
.title::before{
 
  margin-left:-10px;
    .title-flex::after {
  transform: translateX(-100%);
        margin-left: 0.25rem;
}
    }
.title::after{
margin-left:10px;
}

2022年7月1日 (五) 17:02的版本

/******************************
 * Styles for mobile main page
 ******************************/

@media all and (min-width: 768px) {
	.wikidata-mainpage-column {
		float: left;
		width: 50%;
	}
	.wikidata-mainpage-column-first {
		padding-right: 5px;
	}
	.wikidata-mainpage-column-second {
		padding-left: 5px;
	}
	.wikidata-mainpage-sister-projects {
		text-align: center;
	}
}

/**
 * Hide title on main pages, village pumps and project chats
 * 
 * @author 
 * @maintainer 
 */

body.action-view .firstHeading {
	display: none;
}

body.action-view #contentSub { 
	display: none;
}

/******************************
 * 分割线
 ******************************/
.title{
  position:relative;
  font-size:16px;
  color:#999;
  /* 溢出隐藏 重要*/
  overflow:hidden;
  text-align:center;
}
.title::before,.title::after{
 content:'';
 display:inline-block;
 width:100%;
 height:1px;
 color:#ccc;
 position:absolute;
 top:50%;
}
.title::before{
  margin-left:-10px;
  transform: translateX(-100%);
}
.title::after{
 margin-left:10px;
}