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

From Umamusume Wiki
Jump to navigation Jump to search
(Created page with ".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)); } img { width: auto; max-height: 200px; } .title { text-align: center; margin: 0; font-weight: 600; font-size: x-large; padding: 20px 10px; line-height: 1.2; color: #4d4d4d; } .line:before, .line:after { height: 2px; background-color: #a8a8a...")
 
No edit summary
Line 16: Line 16:
     margin: 0;
     margin: 0;
     font-weight: 600;
     font-weight: 600;
     font-size: x-large;
     font-size: large;
     padding: 20px 10px;
     padding: 20px 10px;
     line-height: 1.2;
     line-height: 1.2;
Line 36: Line 36:
     align-items: center;
     align-items: center;
     justify-content: center;
     justify-content: center;
}
.horseshoe {
    width: 20px;
    transform: rotate(180deg);
    margin: 0 10px;
}
}

Revision as of 09:35, 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));
}
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;
}