Template:MonthlyConvert/Default/styles.css: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
Created page with ".mc-modal *, .mc-modal *:before, .mc-modal *:after { box-sizing: border-box; } →Close button: .mc-close { display: inline-block; position: absolute; right: 15px; top: 15px; z-index: 999; cursor: pointer; padding: 0; } body.rtl .mc-close { right: auto; left: 0; } .mc-close:hover .mc-icon g { →stroke: #000;: } .mc-icon-close { width: 26px; height: 26px; } →Back button: .mc-back { display: none; cursor: pointer; position: absolute; top: 20px;..." |
No edit summary |
||
Line 118: | Line 118: | ||
display: inline-block; |
display: inline-block; |
||
vertical-align: middle; |
vertical-align: middle; |
||
width: |
width: 100%; |
||
height: 54px; |
height: 54px; |
||
padding: |
padding: 12px; |
||
margin: 10px; |
margin: 10px; |
||
font-size: |
font-size: 17px; |
||
font-weight: bold; |
font-weight: bold; |
||
line-height: 1; |
line-height: 1; |
||
Line 132: | Line 132: | ||
cursor: pointer; |
cursor: pointer; |
||
transition: all 0.25s ease-in-out; |
transition: all 0.25s ease-in-out; |
||
} |
|||
@media ( min-width: 800px ) { |
|||
.mc-button { |
|||
width: 130px; |
|||
height: 60px; |
|||
padding: 14px; |
|||
font-size: 32px; |
|||
} |
|||
} |
} |
||
Revision as of 15:46, 22 July 2021
.mc-modal *,
.mc-modal *:before,
.mc-modal *:after {
box-sizing: border-box;
}
/* Close button */
.mc-close {
display: inline-block;
position: absolute;
right: 15px;
top: 15px;
z-index: 999;
cursor: pointer;
padding: 0;
}
body.rtl .mc-close {
right: auto;
left: 0;
}
.mc-close:hover .mc-icon g {
/*stroke: #000;*/
}
.mc-icon-close {
width: 26px;
height: 26px;
}
/* Back button */
.mc-back {
display: none;
cursor: pointer;
position: absolute;
top: 20px;
left: 15px;
}
.mc-back:hover .mc-icon path {
/*stroke: #000;*/
}
.mc-back:hover .mc-icon rect {
/*fill: #000;*/
}
.mc-icon-back {
height: 18px;
width: 26px;
}
/* Modal Screen */
.mc-modal-screen {
position: fixed;
top: 0;
left: 0;
z-index: 100;
background: rgba( 0, 0, 0, 0.8 );
width: 100%;
height: 100%;
display: none;
overflow-y: scroll;
}
/* Modal Box */
.mc-modal {
position: absolute;
top: 5vh;
left: 5%;
z-index: 110;
background: #fff;
padding: 40px 30px;
text-align: center;
color: #000;
font-size: 16px;
line-height: 1.4;
font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
font-style: normal;
box-shadow: 0 0 20px rgba( 0, 0, 0, 0.3 );
width: calc( 90% );
}
@media ( min-width: 800px ) {
.mc-modal {
left: 50%;
top: 10vh;
margin-left: -390px;
padding: 60px;
font-size: 17px;
width: 660px;
}
}
.mc-modal h1 {
line-height: 1.1;
font-size: 150%;
}
.mc-modal p {
margin: 1em 0 0;
}
/* Buttons */
.mc-buttons {
margin: 1em auto;
text-align: center;
}
@media ( min-width: 800px ) {
.mc-buttons {
margin: 2em auto 1em;
}
}
.mc-button {
display: inline-block;
vertical-align: middle;
width: 100%;
height: 54px;
padding: 12px;
margin: 10px;
font-size: 17px;
font-weight: bold;
line-height: 1;
background-color: #36c;
border: 1px solid #36c;
border-radius: 6px;
outline: 0;
color: #fff;
cursor: pointer;
transition: all 0.25s ease-in-out;
}
.mc-button:focus {
outline: 0;
border-color: #36c !important;
box-shadow: inset 0 0 0 1px #36c, inset 0 0 0 2px #fff;
}
.mc-button:hover {
background-color: #447ff5;
border-color: #447ff5;
}
.mc-button:active {
background-color: #2a4b8d;
border-color: #2a4b8d;
box-shadow: none;
}
.mc-link {
color: #36c;
font-weight: bold;
text-decoration: underline;
cursor: pointer;
}
.mc-edit-amount p {
margin-bottom: 2em;
}
.mc-other-amount {
font-size: 200%;
}
#mc-other-amount-input {
width: 30%;
font-size: 100%;
border: 0;
outline: 0;
border-bottom: 1px solid #000;
}
.mc-edit-amount .mc-button {
width: calc( 100% );
}
@media ( min-width: 800px ) {
.mc-edit-amount .mc-button {
width: 300px;
}
}
/* Error messages */
.mc-error {
display: none;
width: calc( 100% + 10px );
margin: 5px 0 5px 5px;
font-size: 14px;
color: #d33;
}
/* This prevents the WMF logo from showing through the modal */
.mw-body-content {
position: inherit;
}