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

Fen Ansiklopedisi sitesinden
Değişiklik özeti yok
Değişiklik özeti yok
20. satır: 20. satır:
border-radius: 15px;
border-radius: 15px;
text-align: center;
text-align: center;
width: 300px;
width: 350px;
margin: 0 auto 25px;
margin: 0 auto 25px;
}
}
32. satır: 32. satır:
border-radius: 15px;
border-radius: 15px;
list-style: none;
list-style: none;
width: 64px;
width: 68px;
height: 180px;
height: 190px;
background: #edc856;
background: #edc856;
border-right: 1px solid #a48d2d;
border-right: 1px solid #a48d2d;
74. satır: 74. satır:
.accordion_menu{
.accordion_menu{
width: 0px;
width: 0px;
height: 180px;
height: 190px;
background: #fffaeb;
background: #fffaeb;
color: #a48d2d;
color: #a48d2d;

23.09, 9 Ekim 2021 tarihindeki hâli

*{
	margin: 1px;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
	font-family: 'Montserrat', sans-serif;
}


.wrapper{
	justify-content: center;
}

.main_title{
	font-size: 28px;
	color: #fff;
	letter-spacing: 2px;
	background: #edc856;
	padding: 15px 25px; 
	border-radius: 15px;
	text-align: center;
	width: 350px;
	margin: 0 auto 25px;
}

.accordion_wrap ul{
	display: flex;
	justify-content: center;
}

.accordion_wrap .accordion_item{
	border-radius: 15px;
	list-style: none;
	width: 68px;
	height: 190px;
	background: #edc856;
	border-right: 1px solid #a48d2d;
	cursor: pointer;
	position: relative;
}

.accordion_wrap .accordion_item:hover,
.accordion_wrap li.active .accordion_item{
	background: #a48d2d;
	border-right: 1px solid #edc856;
}

.accordion_wrap li:first-child .accordion_item{
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

.accordion_wrap li:last-child .accordion_item,
.accordion_wrap li:last-child .accordion_menu{
	border-right: 0px;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

.accordion_wrap ul li .icon{
	font-size: 24px;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(-90deg);	
}


.accordion_wrap ul li{
	display: flex;
}

.accordion_menu{
	width: 0px;
	height: 190px;
	background: #fffaeb;
	color: #a48d2d;
	overflow: hidden;
	transition: width 0.2s ease;
}

.accordion_wrap ul li.active .accordion_menu{
	width: 250px;
}

.accordion_menu .inner_am{
	padding: 15px;
}

.accordion_menu .title{
	font-weight: 600;
}

.accordion_menu .content{
	font-size: 13px;
	font-weight: 300;
	margin: 10px 0;
}

.accordion_menu .view_more{
	padding: 5px;
	background: #a48d2d;
	color: #fffaeb;
	width: 125px;
	text-align: center;
	border-radius: 3px;
	cursor: pointer;
	font-size: 13px;
}

.accordion_menu .view_more:hover{
	text-decoration: underline;
}
.containersınıf{  
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
}

.rowsınıf:after {
	flex: 25%;
	padding: 20px;
}

@media screen and (max-width: 992px) {
  .rowsınıf {
    flex: 50%;
  }
}

@media screen and (max-width: 600px) {
  .containersınıf {
    flex-direction: column;
  }
}