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

_media.scss « _core « css « assets - github.com/uPagge/uBlogger.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1825df1f2a2115b14e6669eb05e882e325954237 (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
@media only screen and (max-width: 1800px) {
  .page {
    max-width: 780px;

    .post-toc {
      width: 300px;
      margin-left: 800px;
    }
  }
}

@media only screen and (max-width: 1440px) {
  .page {
    max-width: 680px;

    .post-toc {
      width: 240px;
      margin-left: 700px;
    }
  }
}

@media only screen and (max-width: 1200px) {
  .page {
    max-width: 560px;

    .post-toc {
      width: 180px;
      margin-left: 580px;
    }
  }
}

@media only screen and (max-width: 960px) {
  .navbar {
    .navbar-container {
      margin: 0 2rem;
    }
  }

  .page {
    max-width: 80%;

    .post-toc {
      display: none;
    }

    .post-toc-mobile {
      display: block;
    }
  }
}

@media only screen and (max-width: 560px) {
  .navbar {
    display: none;
  }

  .navbar-mobile {
    display: block;
  }

  .page {
    max-width: 100%;

    .categories-card {
      .card-item {
        width: 100%;
      }
    }
  }

  .dynamic-to-top {
    display: none !important;
  }
}