Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_modal.scss « components « sass « assets - github.com/zzossig/hugo-theme-zdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7e570031c9ba8d37303e6f14675915d83af824a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.modal {
  position: fixed;
  z-index: z('modal');
  left: -100%;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: hidden;
  opacity: 1;
  background: rgba(0,0,0,0.6);

  @include transition(opacity, 0.25s, ease-in-out);
}