Nota: dopo aver pubblicato, potrebbe essere necessario pulire la cache del proprio browser per vedere i cambiamenti.

  • Firefox / Safari: tieni premuto il tasto delle maiuscole Shift e fai clic su Ricarica, oppure premi Ctrl-F5 o Ctrl-R (⌘-R su Mac)
  • Google Chrome: premi Ctrl-Shift-R (⌘-Shift-R su un Mac)
  • Edge: tieni premuto il tasto Ctrl e fai clic su Aggiorna, oppure premi Ctrl-F5.
/* ================== MEDIAWIKI:LINKEDIN.CSS =============== */

/* Contenitore principale del box LinkedIn */
.linkedin-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #eef6f9;
  padding: 1rem 1.5rem;
  border-left: 5px solid #0a66c2;
  border-radius: 8px;
  margin: 2rem auto;
  max-width: 800px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.linkedin-box img {
  width: 48px;
  height: 48px;
}

.linkedin-box-text {
  flex: 1;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  font-size: 1rem;
}

.linkedin-box button {
  background-color: #0a66c2;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.95rem;
}

.linkedin-box button:hover {
  background-color: #004182;
}