-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
117 additions
and
26 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Inter:[email protected]&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" href="./style/reset.css"> | ||
<link rel="stylesheet" href="./style/style.css"> | ||
</head> | ||
|
||
|
@@ -68,8 +69,10 @@ <h2>About Us</h2> | |
<div class="row1"> | ||
<div class="pic"> | ||
<img src="./images/hanna.png" alt=""> | ||
<h3>Hanna Dahl</h3> | ||
<p>Task Manager (not Windows) <br> MSc Biotechnology <br> Aalto University</p> | ||
<div class="box"> | ||
<h3>Hanna Dahl</h3> | ||
<p>Task Manager (not Windows) <br> MSc Biotechnology <br> Aalto University</p> | ||
</div> | ||
</div> | ||
<div class="pic"> | ||
<img src="./images/ardalan.png" alt=""> | ||
|
@@ -122,7 +125,7 @@ <h3>Uma</h3> | |
</div> | ||
|
||
|
||
<div class="wrapper-2"> | ||
<div class="wrapper"> | ||
<h2>About iGEM</h2> | ||
<p>International Genetically Engineered Machine, iGEM, is an international synthetic biology competition originating from the Massachusetts Institute of Technology (MIT), Boston, USA. The iGEM competition challenges students to design and implement a project within a short time frame (around 10 months) using innovation, design, experimental work and modelling applications. | ||
|
||
|
@@ -134,7 +137,39 @@ <h2>About iGEM</h2> | |
<div class="sponsors"> | ||
<div class="title">Sponsors</div> | ||
<div class="text">Our sponsors who made this project possible!</div> | ||
<div class="rows"> | ||
<img src="./images/hilife.png" alt=""> | ||
<img src="./images/chemeng.png" alt=""> | ||
</div> | ||
<div class="rows"> | ||
<img src="./images/agri.png" alt=""> | ||
<img src="./images/tek.png" alt=""> | ||
</div> | ||
<div class="rows"> | ||
<img src="./images/elec.png" alt=""> | ||
<img src="./images/environ.png" alt=""> | ||
</div> | ||
<div class="rows"> | ||
<img src="./images/thermo.png" alt=""> | ||
<img src="./images/sci.png" alt=""> | ||
</div> | ||
<div class="rows"> | ||
<img src="./images/heureka.png" alt=""> | ||
<img src="./images/kemian.png" alt=""> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
|
||
<div class="foot"> | ||
<div class="contact"> | ||
<h5>Contact</h5> | ||
<p>[email protected] <br> Kemistentie 1 <br> 02150, Espoo </p> | ||
</div> | ||
<div class="prev-teams"> | ||
<h5>Previous Teams</h5> | ||
<p>2023 2022 2021 <br> 2020 2019 2018</p> | ||
</div> | ||
</div> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/*** The new CSS Reset - version 1.2.0 (last updated 23.7.2021) ***/ | ||
|
||
/* Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property */ | ||
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) { | ||
all: unset; | ||
display: revert; | ||
} | ||
|
||
/* Preferred box-sizing value */ | ||
*, | ||
*::before, | ||
*::after { | ||
box-sizing: border-box; | ||
} | ||
|
||
/* | ||
Remove list styles (bullets/numbers) | ||
in case you use it with normalize.css | ||
*/ | ||
ol, ul { | ||
list-style: none; | ||
} | ||
|
||
/* For images to not be able to exceed their container */ | ||
img { | ||
max-width: 100%; | ||
} | ||
|
||
/* Removes spacing between cells in tables */ | ||
table { | ||
border-collapse: collapse; | ||
} | ||
|
||
/* Revert the 'white-space' property for textarea elements on Safari */ | ||
textarea { | ||
white-space: revert; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters