Template:CreateHub/styles.css: Difference between revisions
Created page with ".creation-hub { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; margin-top: 2rem; } .creation-card { width: 250px; padding: 1.5rem; text-align: center; border: 2px solid #e0e0e0; →border-radius: 1rem;: background: #fafafa; →box-shadow: 0 2px 6px rgba(0,0,0,0.08);: transition: all 0.2s ease-in-out; } .creation-card:hover { background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.12); transform: translateY(-2px);..." |
No edit summary |
||
| (35 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
.creation- | .creation-row { | ||
margin: 10px 0; | |||
width: 100%; | |||
margin | |||
width: | |||
} | } | ||
.creation- | /* Force InputBox to align horizontally */ | ||
margin- | .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- | .creation-row form { | ||
display: flex !important; | |||
gap: 15px !important; | |||
align-items: center !important; | |||
} | } | ||
.creation- | /* Shared Styling */ | ||
.creation-row input[type="text"], | |||
.creation-row input[type="submit"] { | |||
height: 40px !important; | |||
box-sizing: border-box !important; | |||
font-size: | font-size: 14px !important; | ||
} | } | ||
.creation- | /* Text Box */ | ||
.creation-row input[type="text"] { | |||
width: 260px !important; | |||
background: #fff !important; | |||
border: 1px solid #a2a9b1 !important; | |||
padding: 0 10px !important; | |||
} | } | ||
.creation- | /* Button */ | ||
.creation-row input[type="submit"] { | |||
width: 260px !important; | |||
border: | background: #fff !important; | ||
border: 1.5px solid #000 !important; | |||
color: #000 !important; | |||
cursor: pointer; | font-weight: 700 !important; | ||
cursor: pointer !important; | |||
border-radius: 2px !important; | |||
} | } | ||
.creation- | .creation-row input[type="submit"]:hover { | ||
background: # | background-color: #f2f2f2 !important; | ||
color: #000 !important; | |||
} | } | ||