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

_base.scss « sass « assets - github.com/kdevo/osprey-delight.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a8d494048f6523a3a89adf57296be9080d929f2a (plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// Font styles
strong {
  font-weight: 600;
}

del,
s {
  text-decoration: line-through;
}

em,
dfn {
  font-style: italic;
}

a {
  transition: color .2s ease-out;
  text-decoration: none;

  img {
    border: 0;
  }

  &:not(.nav-icon):hover {
    color: $accent-color;
  }
}

small {
  font-size: 0.8em;
  color: $alt-text-color;
}

// Images
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

// Lists
ul,
ol {
  margin-bottom: $vertical-rhythm;

  li {
    margin-left: 1.25em;

  }
}

code {
  font-family: $font-code;
}

ul li {
  list-style-type: disc;
}

p {
  margin-bottom: $vertical-rhythm;
}

// Lazysizes
.no-js img.lazyload {
  display: none;
}

// Prevent "broken image" icon from showing up
img.lazyload:not([src]) {
	visibility: hidden;
}