Template:CreateHub/styles.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| (28 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
.creation-row { | .creation-row { | ||
margin: 10px 0; | |||
width: 100%; | |||
} | } | ||
/* | /* Force InputBox to align horizontally */ | ||
.creation-row .mw-inputbox- | .creation-row .mw-inputbox-centered { | ||
margin: 0 !important; | |||
white-space: nowrap !important; /* Prevents wrapping */ | |||
display: flex !important; | |||
align-items: center !important; | |||
gap: 15px !important; | |||
} | } | ||
.creation-row form { | |||
.creation-row | display: flex !important; | ||
gap: 15px !important; | |||
align-items: center !important; | |||
} | |||
/* Shared Styling */ | |||
font- | .creation-row input[type="text"], | ||
.creation-row input[type="submit"] { | |||
height: 40px !important; | |||
box-sizing: border-box !important; | |||
font-size: 14px !important; | |||
} | } | ||
/* | /* Text Box */ | ||
.creation-row | .creation-row input[type="text"] { | ||
width: 260px !important; | |||
background: #fff !important; | |||
border: 1px solid #a2a9b1 !important; | |||
padding: 0 10px !important; | |||
} | } | ||
/* | /* Button */ | ||
.creation-row | .creation-row input[type="submit"] { | ||
width: 260px !important; | |||
background: #fff !important; | |||
border: 1.5px solid #000 !important; | border: 1.5px solid #000 !important; | ||
color: #000 !important; | |||
font-weight: 700 !important; | |||
cursor: pointer !important; | |||
border-radius: 2px !important; | border-radius: 2px !important; | ||
} | } | ||
.creation-row input[type="submit"]:hover { | |||
.creation-row | |||
background-color: #f2f2f2 !important; | background-color: #f2f2f2 !important; | ||
color: #000 !important; | |||
} | } | ||
Latest revision as of 15:09, 24 November 2025
.creation-row {
margin: 10px 0;
width: 100%;
}
/* Force InputBox to align horizontally */
.creation-row .mw-inputbox-centered {
margin: 0 !important;
white-space: nowrap !important; /* Prevents wrapping */
display: flex !important;
align-items: center !important;
gap: 15px !important;
}
.creation-row form {
display: flex !important;
gap: 15px !important;
align-items: center !important;
}
/* Shared Styling */
.creation-row input[type="text"],
.creation-row input[type="submit"] {
height: 40px !important;
box-sizing: border-box !important;
font-size: 14px !important;
}
/* Text Box */
.creation-row input[type="text"] {
width: 260px !important;
background: #fff !important;
border: 1px solid #a2a9b1 !important;
padding: 0 10px !important;
}
/* Button */
.creation-row input[type="submit"] {
width: 260px !important;
background: #fff !important;
border: 1.5px solid #000 !important;
color: #000 !important;
font-weight: 700 !important;
cursor: pointer !important;
border-radius: 2px !important;
}
.creation-row input[type="submit"]:hover {
background-color: #f2f2f2 !important;
color: #000 !important;
}