Template:Event Box/styles.css: Difference between revisions

From Umamusume Wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 6: Line 6:
     background-color: white;
     background-color: white;
     filter: drop-shadow(1px 1px 5px rgba(168,168,168,.4));
     filter: drop-shadow(1px 1px 5px rgba(168,168,168,.4));
    padding: 10px;
}
}
img {
img {

Revision as of 09:43, 18 April 2024

.box {
    border: 2px solid #c0c4d6;
    border-radius: 8px;
    display: block;
    width: 300px;
    background-color: white;
    filter: drop-shadow(1px 1px 5px rgba(168,168,168,.4));
    padding: 10px;
}
img {
    width: auto;
    max-height: 200px;
}

.title {
    text-align: center;
    margin: 0;
    font-weight: 600;
    font-size: large;
    padding: 20px 10px;
    line-height: 1.2;
    color: #4d4d4d;
}

.line:before, .line:after {
    height: 2px;
    background-color: #a8a8a9;
    content: "";
    display: block;
    width: 50%;
}

.line {
    margin: 0;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}