Benutzer:Rikku/common.css: Unterschied zwischen den Versionen

Aus ConanWiki
Zur Navigation springen Zur Suche springen
Inhalt hinzugefügt Inhalt gelöscht
K (test white-space handling;)
K (+csss responsive stuff (i);)
Zeile 1: Zeile 1:
 
pre {
 
pre {
 
white-space:pre-wrap;
 
white-space:pre-wrap;
  +
}
  +
  +
  +
  +
/* 2020-03-23 HR responsive images */
  +
/* @test: why do i need this... */
  +
.res-img img,
  +
.res-img p a img {
  +
max-height:300px;
  +
width:auto;
  +
}
  +
  +
/* To make images responsive */
  +
img {
  +
max-width:100%;
  +
height:auto;
  +
}
  +
  +
  +
/* 2020-03-23 HR responsive lists */
  +
.res-list ul li {
  +
display:inline-block;
  +
margin: 3px;
  +
text-align: center;
  +
}
  +
  +
.res-list ul li ul li{
  +
display: block;
 
}
 
}

Version vom 23. März 2020, 17:05 Uhr

pre  {
white-space:pre-wrap;
}



/* 2020-03-23 HR responsive images */
/* @test: why do i need this... */
.res-img img,
.res-img p a img {
	max-height:300px;
	width:auto;
}

/* To make images responsive */
img {
	max-width:100%;
	height:auto;
}


/* 2020-03-23 HR responsive lists */
.res-list ul li {
  display:inline-block;
  margin: 3px;
  text-align: center;
}

.res-list ul li ul li{
  display: block;
}