模板:会议大厅页顶/style.css:修订间差异

你好,领航员,欢迎来到地球联合百科!
无编辑摘要
无编辑摘要
第8行: 第8行:
     display: flex;
     display: flex;
     flex-wrap: wrap;
     flex-wrap: wrap;
     justify-content: space-around;
     justify-content: center;
}
}



2023年4月10日 (一) 19:41的版本

.meeting-hall-title {
    text-align: center;
    font-size: larger;
    font-weight: 700
}

.apply-button-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.apply-button-list>a {
    padding: 0.4em 1em 0.4em;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 100%;
    background: #eaeff2;
    border-radius: 0.5em;
    transition: .3s all;
    background-image: none;
}

.apply-button-list>a::after {
    display: none;
}

.apply-button-list a:hover {
    background: #f2f2f2;
}

.apply-button-list>a,
.apply-button-list>a.external:visited {
    color: #0645ad;
}