打开/关闭菜单
打开/关闭外观设置菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

目前wiki关闭了自行注册账号的功能,如需注册账号,请查阅Help:注册账号

模块:Outdent/styles.css:修订间差异

来自RIA | Wiki
Aunst留言 | 贡献
bugfix
Aunst留言 | 贡献
优化视觉效果
 
第5行: 第5行:
   max-width: 100%;
   max-width: 100%;
   width: 100%; /* 通过模板参数设置 */
   width: 100%; /* 通过模板参数设置 */
   margin: 1em 0;
   margin: 0.5em 0;
   height: 1px;
   height: 1px;
   background-color: #a2a9b1;
   background-color: #a2a9b1;

2023年8月7日 (一) 22:41的最新版本

/* Template:Outdent 模板样式 */

.template-outdent {
  display: flex;
  max-width: 100%;
  width: 100%; /* 通过模板参数设置 */
  margin: 0.5em 0;
  height: 1px;
  background-color: #a2a9b1;
}

.template-outdent::before {
  align-self: flex-start;
  display: block;
  height: 0.5em;
  border-left: 1px solid #a2a9b1;
  content: "";
}
.template-outdent::after {
  align-self: flex-end;
  display: block;
  height: 0.5em;
  border-right: 1px solid #a2a9b1;
  content: "";
}

.template-outdent-line {
  width: 100%;
}

/* 反转了 */
.reversed.template-outdent::before {
  align-self: flex-end;
}
.reversed.template-outdent::after {
  align-self: flex-start;
}