MediaWiki:Common.css: Difference between revisions
no edit summary
Arisepedia (talk | contribs) No edit summary |
Arisepedia (talk | contribs) No edit summary |
||
Line 23: | Line 23: | ||
text-align: center; | text-align: center; | ||
margin-bottom: 40px; | margin-bottom: 40px; | ||
transition: transform 0.3s ease, box-shadow 0.3s ease; | |||
} | |||
.hero:hover { | |||
transform: translateY(-5px); | |||
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); | |||
} | } | ||
Line 28: | Line 34: | ||
font-size: 2.5em; | font-size: 2.5em; | ||
font-weight: 700; | font-weight: 700; | ||
margin: 0; | margin: 0 0 20px 0; | ||
text-transform: uppercase; | |||
} | } | ||
Line 35: | Line 42: | ||
margin: 20px 0; | margin: 20px 0; | ||
font-weight: 300; | font-weight: 300; | ||
max-width: 800px; | |||
margin-left: auto; | |||
margin-right: auto; | |||
} | } | ||
. | .contact-message { | ||
background: rgba(255, 255, 255, 0.1); | |||
background: | border-radius: 10px; | ||
padding: 15px; | |||
margin-top: 30px; | |||
border-radius: | |||
margin-top: | |||
} | } | ||
. | .contact-message p { | ||
font-size: 1.1em; | |||
margin: 0; | |||
font-style: italic; | |||
} | } | ||
Line 64: | Line 68: | ||
margin-bottom: 40px; | margin-bottom: 40px; | ||
overflow: hidden; | overflow: hidden; | ||
transition: transform 0.3s ease, box-shadow 0.3s ease; | |||
} | |||
.featured-articles:hover { | |||
transform: translateY(-5px); | |||
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); | |||
} | } | ||
Line 159: | Line 169: | ||
border: 1px solid #e0e0e0; | border: 1px solid #e0e0e0; | ||
margin-bottom: 20px; | margin-bottom: 20px; | ||
transition: transform 0.3s ease, box-shadow 0.3s ease; | |||
} | |||
.card:hover { | |||
transform: translateY(-5px); | |||
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); | |||
} | } | ||
Line 185: | Line 201: | ||
text-align: center; | text-align: center; | ||
margin-top: 40px; | margin-top: 40px; | ||
transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease; | |||
} | |||
.cta:hover { | |||
transform: translateY(-5px); | |||
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); | |||
background-color: #ffffff; | |||
} | } | ||
Line 218: | Line 241: | ||
margin-top: 40px; | margin-top: 40px; | ||
box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1); | box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1); | ||
transition: transform 0.3s ease, box-shadow 0.3s ease; | |||
} | |||
.footer:hover { | |||
transform: translateY(-3px); | |||
box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.15); | |||
} | } | ||
Line 229: | Line 258: | ||
@media (max-width: 768px) { | @media (max-width: 768px) { | ||
.hero h1 { | .hero h1 { | ||
font-size: | font-size: 2em; | ||
} | } | ||
.hero p { | .hero p { | ||
font-size: | font-size: 1.1em; | ||
} | } | ||
. | .contact-message p | ||