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

_whitebox.scss « components « scss « assets - github.com/JugglerX/hugo-whisper-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ee1c5d80f12b42b2c51f2acb4ff8557dd9eac3c6 (plain)
1
2
3
4
5
6
7
8
9
10
@mixin whitebox($padding: 10px) {
  border: 1px solid #dcdcdc;
  border-radius: 3px;
  box-shadow: 0 1px 18px rgba(0, 0, 0, 0.2);
  background: #ffffff;
  padding: $padding;
}
.whitebox {
  @include whitebox();
}