All new website files

This commit is contained in:
Arjun Patel
2018-06-30 12:16:09 -07:00
parent 21c3a9b883
commit a579a12a92
59 changed files with 10684 additions and 0 deletions
+54
View File
@@ -0,0 +1,54 @@
/* Image */
.image {
border-radius: _size(border-radius);
border: 0;
display: inline-block;
position: relative;
img {
border-radius: _size(border-radius);
display: block;
}
&.left,
&.right {
max-width: 40%;
img {
width: 100%;
}
}
&.left {
float: left;
margin: 0 2rem 2rem 0;
top: 0.25rem;
}
&.right {
float: right;
margin: 0 0 2rem 2rem;
top: 0.25rem;
}
&.fit {
display: block;
margin: 0 0 _size(element-margin) 0;
width: 100%;
img {
width: 100%;
}
}
&.main {
display: block;
margin: 0 0 (_size(element-margin) * 1.5) 0;
width: 100%;
img {
width: 100%;
}
}
}