add research page

This commit is contained in:
rebuilt 2022-11-21 16:44:27 -08:00
parent 58ebe4df1a
commit a173740ded
12 changed files with 63 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 434 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 204 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

View file

@ -4,3 +4,4 @@
@import 'partials/bootstrap-overrides';
@import 'partials/layout';
@import 'partials/links';
@import 'partials/downloads';

View file

@ -0,0 +1,20 @@
.download-container {
position: relative;
border: 1px solid #333;
margin: 2%;
overflow: hidden;
width: 300px;
}
.download-container img {
width: 300px;
-moz-transition: all 0.3s;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.download-container:hover img {
-moz-transform: scale(1.2);
-webkit-transform: scale(1.2);
transform: scale(1.2);
}