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

Fen Ansiklopedisi sitesinden
Değişiklik özeti yok
Değişiklik özeti yok
1. satır: 1. satır:
#mySidenav a {
* {
   position: absolute;
   box-sizing: border-box;
  left: -80px;
  transition: 0.3s;
  padding: 15px;
  width: 100px;
  text-decoration: none;
  font-size: 20px;
  color: white;
  border-radius: 0 5px 5px 0;
}
}


#mySidenav a:hover {
body {
   left: 0;
   margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}
}


#about {
/* The grid: Three equal columns that floats next to each other */
   top: 20px;
.column {
   background-color: #04AA6D;
   float: left;
  width: 33.33%;
  padding: 50px;
   text-align: center;
  font-size: 25px;
  cursor: pointer;
  color: white;
}
}


#blog {
.containerTab {
   top: 80px;
   padding: 20px;
   background-color: #2196F3;
   color: white;
}
}


#projects {
/* Clear floats after the columns */
   top: 140px;
.row:after {
   background-color: #f44336;
   content: "";
  display: table;
   clear: both;
}
}


#contact {
/* Closable button inside the container tab */
   top: 200px;
.closebtn {
   background-color: #555
   float: right;
  color: white;
   font-size: 35px;
  cursor: pointer;
}
}

01.08, 9 Ekim 2021 tarihindeki hâli

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* The grid: Three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  padding: 50px;
  text-align: center;
  font-size: 25px;
  cursor: pointer;
  color: white;
}

.containerTab {
  padding: 20px;
  color: white;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Closable button inside the container tab */
.closebtn {
  float: right;
  color: white;
  font-size: 35px;
  cursor: pointer;
}