Difference between revisions of "Template:Rotterdam HR/css/main"

Line 190: Line 190:
  
 
/* ------ CONTAINERS ------ */
 
/* ------ CONTAINERS ------ */
 
+
.text-container {
.container {
+
 
   position: relative;
 
   position: relative;
  width: 85%;
+
   box-shadow: 2px 2px 20px rgba(0,0,0,0.1);
  margin: 20px auto;
+
  min-height: 380px;
  padding: 20px 50px;
+
  padding-bottom: 50px;
  background: var(--secondary-color);
+
  margin: 20px;
   box-shadow: 5px 5px 10px rgba(0,0,0,0.1);
+
 
}
 
}
  
.text-pic {
+
.text-container .title {
   display: flex;
+
   color: white;
 +
  background: var(--main-color);
 +
  padding: 10px;
 +
  margin-top: 0;
 
}
 
}
  
.item-container .title, .container .title {
+
.text-container .title::after {
  color: var(--main-color);
+
}
+
 
+
.item-container .title {
+
background: rgba(0, 0, 0, 0.1);
+
}
+
 
+
.item-container .title::after, .container .title::after {
+
 
   content: '';
 
   content: '';
 
   display: block;
 
   display: block;
   margin-top: 2px;
+
   width: 100%;
  background: var(--main-color);
+
   height: 4px;
   height: 2px;
+
   background: currentColor;
   width: 50%;
+
 
}
 
}
  
.item-container .title::after {
+
.text-container .content {
margin: 0 auto;
+
  margin: 10px 20px;
 
}
 
}
  
.text-pic .text {
+
.text-container img {
   flex: 1;
+
   float: right;
   padding-bottom: 50px;
+
   height: 280px;
}
+
   margin-left: 20px;
 
+
   box-shadow: 2px 2px 20px rgba(0,0,0,0.1);
.text-pic .photo {
+
   flex: 1;
+
  position: relative;
+
  right: -30px;
+
}
+
 
+
.text-pic .photo img {
+
  width: 100%;
+
   box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
+
 
}
 
}
  
 
.nav-button {
 
.nav-button {
   position: relative;
+
   position: absolute;
padding: 10px 20px;
+
  bottom: 20px;
 +
  right: 20px;
 +
  padding: 10px 20px;
 
   background: var(--main-color);
 
   background: var(--main-color);
 
   color: white;
 
   color: white;

Revision as of 07:59, 10 August 2018

/* ----- color palet ----- */

root {
 --main-color: #33691E;

--secondary-color: #E0E0E0; --wetlab-color: #2E7D32;

 --hardware-color: #3949AB;
 --software-color: #424242;

--dark: rgb(50, 50, 50); }

/* ----- iGEM STYLE FIXES ----- */

ul { list-style-image: none; }

  1. content {

width: 100%; margin: 0; padding: 0; background: none; }

  1. bodyContent a[href ^="https://"], .link-https {
   background: whitesmoke;
   padding: 5px 0;

}

  1. HQ_page h1, #HQ_page h2, #HQ_page h3, #HQ_page p, #HQ_page span, #HQ_page a{

font-family: "Century Gothic"; line-height: initial; }

  1. bodyContent h3, #bodyContent h4, #bodyContent h5 {

margin-bottom: 0; padding: 0 5px; line-height: 1.1em; }

  1. top_title, #top_menu_under {

display: none; }

  1. top_menu_14 {

position: initial; }

  1. top_menu_inside #user_item {

margin-right: 0; float: none; }

  1. top_menu_inside {

margin: 0 auto; width: 90%; }

/* ----- NAVBAR ----- */ body { font-family: "Century Gothic"; background: white; }

.menu {

 /*   position: absolute; */
 /*   top: 0; */
 /*   left: 0; */
 /*   right: 0; */
 display: flex;

}

.menu, .sub-menu {

 margin: 0;
 padding: 0;
 list-style: none;
 box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);

}

.menu .main-item {

 position: relative;
 display: flex;
 flex-direction: column;
 align-items: center;
 flex: 1;
 /*   min-width: 135px; */
 padding: 5px;
 text-align: center;
 text-decoration: none;
 color: white;
 background: var(--dark);
 fill: currentColor;

}

.menu .main-item::before {

 content: "";
 position: absolute;
 bottom: 0;
 left: 0;
 right: 0;
 height: 3px;
 background: currentColor;
 transform: scale(0, 1);
 transform-origin: left;
 transition: transform 200ms;

}

.sub-menu {

 position: absolute;
 top: 48px;
 left: 0;
 right: 0;
 transform: scale(1, 0);
 transform-origin: top;
 transition: transform 250ms;

}

.sub-menu .sub-item {

 padding: 10px 5px;
 border-top: rgba(255, 255, 255, 0.25) solid 2px;
 color: var(--dark);
 transition: color 200ms;

}

.menu .construction::after {

 content: url('https://static.igem.org/mediawiki/2018/4/4a/T--Rotterdam_HR--wrench.svg');
 position: absolute;
 top: 5px;
 left: 0;
 right: 0;
 bottom: 5px;
 display: flex;
 flex-direction: column;
 align-items: center;
 font-size: 12px;
 color: orange;
 background: var(--dark);
 transform: scale(1, 0);
 transform-origin: bottom;
 transition: transform 250ms;

}

.menu .main-item:hover::before {

 transform: scale(1, 1);

}


.menu .construction:hover::after {

 transform: scale(1, 1);

}

.menu .main-item:hover .sub-menu {

 transform: scale(1, 1);

}

.menu .main-item:hover .sub-menu .sub-item {

 color: white;
 transition: color 200ms 100ms;

}

/* ------ FOOTER ------ */

.multiple-items-footer { margin: 0 auto; display: flex; justify-content: space-around; width: 250px; }

.item-footer { width: 50px; height: 50px; margin: 5px; filter: invert(50%); transition: 0.4s; }

.item-footer:hover { filter: invert(100%); transition: 0.1s; }

  1. footer {

padding: 40px; background: rgb(50, 50, 50); text-align: center; color: white; font-size: 18px; }

/* ------ CONTAINERS ------ */ .text-container {

 position: relative;
 box-shadow: 2px 2px 20px rgba(0,0,0,0.1);
 min-height: 380px;
 padding-bottom: 50px;
 margin: 20px;

}

.text-container .title {

 color: white;
 background: var(--main-color);
 padding: 10px;
 margin-top: 0;

}

.text-container .title::after {

 content: ;
 display: block;
 width: 100%;
 height: 4px;
 background: currentColor;

}

.text-container .content {

 margin: 10px 20px;

}

.text-container img {

 float: right;
 height: 280px;
 margin-left: 20px;
 box-shadow: 2px 2px 20px rgba(0,0,0,0.1);

}

.nav-button {

 position: absolute;
 bottom: 20px;
 right: 20px;
 padding: 10px 20px;
 background: var(--main-color);
 color: white;
 text-decoration: none;
 box-shadow: 2px 2px 5px rgba(0,0,0,0.1);

}

.nav-button::before {

 content: '> ';

}

.nav-button::after {

 content: ;
 position: absolute;
 left: 0;
 right: 0;
 bottom: 0;
 height: 3px;
 background: white;
 transform: scale(0, 1);
 transform-origin: left;
 transition: transform 200ms;

}

.nav-button:hover::after {

 transform: scale(1, 1);

}

.item-container {

 display: flex;

}

.item-container div {

 position: relative;
 flex: 1;

margin: 20px; padding-bottom: 20px;

 text-align: center;
 box-shadow: 2px 2px 20px rgba(0,0,0,0.1);
 background: white;

}

.item-container .title {

 background: #2E7D32;
 margin-top: 0;
 padding: 10px;
 color: white;

}

.item-container .title::after {

 content: ;
 display: block;
 width: 90%;
 height: 4px;
 margin: 0 auto;
 background: currentColor;

}

.item-container .content {

 padding: 10px 20px;

}

.item-container .problem {

 margin-right: 40px;

}

.item-container .solution {

 margin-left: 40px;

}

@media screen and (max-width: 700px) {

 .container {
   flex-direction: column;
   padding: 10px;
   margin: 10px auto;
   width: 95%;
 }
 
 .text-pic .photo {
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   order: -1;
 }
 
 .container {
   text-align: center;
 }
 
 .container .title::after {
   width: 100%;
 }
 
 .container .nav-button {
   left: 10px;
   right: 10px;

}

.item-container { flex-direction: column; align-items: center; }

.item-container div { margin: 20px 0; } }