Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Revision as of 16:17, 24 March 2024 by Laniatus (talk | contribs)

display: flex; justify-content: center; align-items: center; padding: 10px; margin: 0 auto; font-weight: bold; text-align: center; font-size: 14px; color: #ffffff; background-color: #353940; /* Hafif bir arka plan rengi ekleyerek kontrastı artırır */ border-top-left-radius: 15px; line-height: 30px; text-shadow: 2px 2px 4px rgba(255, 134, 0, 0.7); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); width: max-content; /* İçeriğin genişliğine göre boyutlanır */ transition: all 0.3s ease-in-out;

&:hover {

 background-color: #3e454c; /* Hover durumunda arka plan rengini değiştirir */
 transform: scale(1.05); /* Hover durumunda elemanı büyütür */

}