aboutsummaryrefslogtreecommitdiff
path: root/_scss/components/theme/_image.scss
blob: dfb25136c50e23972ee2f3c6dfbeef490cbacad0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
@import 'utilities/boxshadow';

img {
  max-width: 100%;
  width: auto;

  &:hover {
    @include box-shadow(0 0 10px rgba(0, 0, 0, .5));
  }
}

.fullscreen {
  background: rgba(0, 0, 0, .5);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;

  &:target {
    display: block;
  }

  img {
    margin-top: 10rem;
  }
}