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

_base.scss « stylesheets « assets « content - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 74daac050afd4f6cf7a015610ee06a8e47bd8cac (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
---
version: 1
---

@import 'variables';

*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  height: 100%;
}

body {
  background-color: $white;
  color: $gray-800;
  display: flex;
  flex-flow: column;
  font-size: 1rem;
  font-family: $font-sans-serif;
  line-height: 1.5;
  min-height: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

// Fluid images by default
img {
  display: block;
  height: auto;
  width: 100% \9; // Force IE10 and below to size SVG images correctly
  max-width: 100%;
}