Menüyü değiştir
Toggle preferences menu
Kişisel menüyü aç / kapat
Oturum açık değil
Your IP address will be publicly visible if you make any edits.

Şablon:Main page/event/styles.css: Revizyonlar arasındaki fark

Kayıp Medya Wiki sitesinden
".simple-event { border: 1px solid #ccc; border-radius: 8px; background: #1e1e1e; overflow: hidden; font-family: sans-serif; } .simple-card { position: relative; height: 5rem; display: flex; align-items: center; } .simple-card__background img { height: 100%; width: auto; object-fit: cover; } .simple-card__foreground { position: absolute; left: 1rem; color: white; font-weight: bold; font-size: 1rem; text-shadow: 0 0 5..." içeriğiyle yeni sayfa oluşturdu
 
Değişiklik özeti yok
5. satır: 5. satır:
   overflow: hidden;
   overflow: hidden;
   font-family: sans-serif;
   font-family: sans-serif;
  margin: 1rem 0;
}
}


.simple-card {
.simple-card {
   position: relative;
   position: relative;
   height: 5rem;
   height: 120px; /* Sabit yükseklik */
   display: flex;
   display: flex;
   align-items: center;
   align-items: center;
}
}


.simple-card__background img {
.simple-card__background {
   height: 100%;
   height: 100%;
   width: auto;
   width: 100%;
   object-fit: cover;
  overflow: hidden;
}
 
.simple-card__img {
  height: 100%;
  width: 100%;
   object-fit: cover; /* Oranlı kırpma */
  display: block;
}
}


23. satır: 31. satır:
   position: absolute;
   position: absolute;
   left: 1rem;
   left: 1rem;
  right: 1rem;
   color: white;
   color: white;
   font-weight: bold;
   font-weight: bold;
   font-size: 1rem;
   font-size: 1rem;
   text-shadow: 0 0 5px black;
   text-shadow: 0 0 5px black;
}
.simple-card__header {
   white-space: nowrap;
   white-space: nowrap;
   overflow: hidden;
   overflow: hidden;
   text-overflow: ellipsis;
   text-overflow: ellipsis;
}
}

18.30, 20 Nisan 2025 tarihindeki hâli

.simple-event {
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #1e1e1e;
  overflow: hidden;
  font-family: sans-serif;
  margin: 1rem 0;
}

.simple-card {
  position: relative;
  height: 120px; /* Sabit yükseklik */
  display: flex;
  align-items: center;
}

.simple-card__background {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.simple-card__img {
  height: 100%;
  width: 100%;
  object-fit: cover; /* Oranlı kırpma */
  display: block;
}

.simple-card__foreground {
  position: absolute;
  left: 1rem;
  right: 1rem;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  text-shadow: 0 0 5px black;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}