Month: February 2015

How to set a minimum font size when using CSS3 vw or vh

When using the CSS3 font-size (viewport) units, such as vw and vh, you may have noticed that the fonts can become very small on smaller screens. To resolve this issue, you can do the following: @media screen and (max-width: 1100px){ font-size:35px; } @media screen and (min-width: 1101px){ font-size: 3vw; }   Using the media queries […]

MIT’s Eulerian Video Magnification on Ubuntu 14.04

To install the Eurlerian Video Magnification software on Ubuntu 14.04, you’ll want to do the following: First, download the associated software here: http://people.csail.mit.edu/mrub/evm/bin/EVM_Matlab_bin-1.1-linux64.zip Then move the associated zip to your preferred location and unzip. You will also need the Matlab Runtime environment (not the actual matlab suite), which can be downloaded here: http://people.csail.mit.edu/mrub/evm/bin/MCR_R2012b_glnxa64_installer.zip To install […]