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

_custom.scss « sass « static - github.com/kongdivin/hugo-theme-okayish-blog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7fe9eee63ff236cb579e4802d97f101fbf619239 (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
html {
  font-weight: 400;
}

p {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

.p-link--logo,
.title-logo {
  color: #111 !important;
  font-weight: bold;
  text-decoration: none !important;
}

.p-link--hashtag {
  color: #666 !important;
}

.p-inline-list-icons--share-links .p-inline-list__item {
  display: inline-block;
  vertical-align: middle;
}

.p-article-pagination__link--no-title {
  &::before,
  &::after {
    top: 0.8rem !important;
  }
}

.u-inline {
  display: inline;
}

.u-margin-bottom--small {
  margin-bottom: 1.1rem;
}

.u-capitalized {
  text-transform: capitalize;
}

.u-unselectable {
  user-select: none;
}

.is-wrapper {
  padding-top: 0;
  padding-bottom: 0;
}

.page-banner {
  background-color: whitesmoke;

  &__image {
    height: 300px;
    width: 300px;
  }
}

.posts .row:first-child .col-12:first-child .p-card {
  margin-top: 1.5rem;
}

// Instagram card styling
.card {
  @extend .p-card;

  .card-header {
    @extend .p-heading--three;
  }

  .card-body {
    padding-top: 0.5rem;
  }
}

@media screen and (min-width: 772px) {
  .col--share-links {
    text-align: right;
  }
}