Şablon:Anasayfa/sınıflar.css: Revizyonlar arasındaki fark

Fen Ansiklopedisi sitesinden
Değişiklik özeti yok
Değişiklik özeti yok
 
(Aynı kullanıcının aradaki diğer 53 değişikliği gösterilmiyor)
1. satır: 1. satır:
* {
* {
   color: white;
   margin: 1px;
   font-family: sans-serif;
   box-sizing: border-box;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
}
}
.wrapper {
 
  max-width: 1200px;
.acordeon {
  position: relative;
background: white;
  overflow: hidden;
margin: 0 auto;
  height: 400px;
    box-shadow: 0 0 3px #B2B2B2;
  margin: 0 auto;
}
}
.accordionHeader {
 
  width: 50px;
.acordeon-cabecera {
  float: left;
border-bottom: 1px solid #DDE0E7;
  background: teal;
color: #222222;
  height: 100%;
cursor: pointer;
  cursor: pointer;
font-weight: 600;
  padding: 10px 0;
padding: 1.5rem;
    background:#fff;
}
}
.accordionHeader h2 {
 
  transform: rotate(90deg);
.acordeon-cabecera:hover {
background: #fdf8d7;
}
}
.accordionContent {
 
  background: cadetblue;
.acordeon-cabecera.active {
  width: 0;
background-color: #fdf8d7;
  height: 100%;
  float: left;
  transition: width 0.5s linear;
}
}
.accordionContent p {
 
  margin: 10px;
.acordeon-contenido {
display: none;
border-bottom: 1px solid #DDE0E7;
background: #fff;
padding: 1.4rem;
color: #4a5666;
}
}
.accordionContent.active {
.box-round {
  width: calc(100% - 200px);
clear: both;
}
 
.box-round-title {
padding: 0.1em;
background: #ccf;
text-align: center;
font-weight: bold;
border: 1px solid #99c;
border-bottom: none;
border-radius: 1.5em 1.5em 0 0;
}
 
.box-round-title > span {
float: right;
margin-bottom: .1em;
font-size: 85%;
padding-right: 0.5em;
}
 
.box-round-title > h2 {
font-size: 100%;
font-weight: bold;
border: none;
margin: 0;
padding: 0;
padding-bottom: .1em;
}
 
.box-round-text {
border: 1px solid #99c;
background: #fff;
margin-bottom: 10px;
padding: .8em 1em 1em 1.3em;
border-radius: 0 0 1.5em 1.5em;
}
}

19.40, 9 Aralık 2022 itibarı ile sayfanın şu anki hâli

* {
  margin: 1px;
  box-sizing: border-box;
}

.acordeon {
	background: white;
	margin: 0 auto;
    box-shadow: 0 0 3px #B2B2B2;
}

.acordeon-cabecera {
	border-bottom: 1px solid #DDE0E7;
	color: #222222;
	cursor: pointer;
	font-weight: 600;
	padding: 1.5rem;
    background:#fff;
}

.acordeon-cabecera:hover {
	background: #fdf8d7;
}

.acordeon-cabecera.active {
	background-color: #fdf8d7;
}

.acordeon-contenido {
	display: none;
	border-bottom: 1px solid #DDE0E7;
	background: #fff;
	padding: 1.4rem;
	color: #4a5666;
}
.box-round {
	clear: both;
}

.box-round-title {
	padding: 0.1em;
	background: #ccf;
	text-align: center;
	font-weight: bold;
	border: 1px solid #99c;
	border-bottom: none;
	border-radius: 1.5em 1.5em 0 0;
}

.box-round-title > span {
	float: right;
	margin-bottom: .1em;
	font-size: 85%;
	padding-right: 0.5em;
}

.box-round-title > h2 {
	font-size: 100%;
	font-weight: bold;
	border: none;
	margin: 0;
	padding: 0;
	padding-bottom: .1em;
}

.box-round-text {
	border: 1px solid #99c;
	background: #fff;
	margin-bottom: 10px;
	padding: .8em 1em 1em 1.3em;
	border-radius: 0 0 1.5em 1.5em;
}