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

_layout.scss « _core « css « assets - github.com/uPagge/uBlogger.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e56844e01daa1b6da50e510c1f2e253c91f4121 (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
/** Layout **/
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 97.5vh;
  width: 100%;

  main {
    flex: 1 0 auto;

    .container {
      padding-left: 1rem;
      padding-right: 1rem;
    }
  }
}

.footer {
  height: 2rem;
  width: 100%;
  text-align: center;
  line-height: 1.5rem;
  padding-top: 2rem;
}

.notfound {
  font-size: 2rem;
  transform: translateY(35vh);
  text-align: center;
}