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

RIA Wiki 已更新到 1.41!部分 CSS 在新版本下可能有不同的表现,请编辑者注意检查和修改。 目前wiki关闭了自行注册账号的功能,如需注册账号,请查阅Help:注册账号

模块:Outdent/styles.css

来自RIA | Wiki
Aunst留言 | 贡献2023年8月7日 (一) 22:38的版本 (bugfix)
/* Template:Outdent 模板样式 */

.template-outdent {
  display: flex;
  max-width: 100%;
  width: 100%; /* 通过模板参数设置 */
  margin: 1em 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;
}