summaryrefslogtreecommitdiff
path: root/_sass/additional/_photo-frame.scss
diff options
context:
space:
mode:
Diffstat (limited to '_sass/additional/_photo-frame.scss')
-rw-r--r--_sass/additional/_photo-frame.scss17
1 files changed, 17 insertions, 0 deletions
diff --git a/_sass/additional/_photo-frame.scss b/_sass/additional/_photo-frame.scss
new file mode 100644
index 0000000..55a30c7
--- /dev/null
+++ b/_sass/additional/_photo-frame.scss
@@ -0,0 +1,17 @@
+.article__content {
+ img.shadow, .shadow > img {
+ @include box-shadow();
+ }
+
+ img.border, .border > img {
+ border: 1px solid $border-color-l;
+ }
+
+ img.rounded, .rounded > img {
+ border-radius: map-get($base, border-radius);
+ }
+
+ img.circle, .circle > img {
+ border-radius: 50%;
+ }
+}