main.scss 1.46 KB
Newer Older
Shaden Smith's avatar
Shaden Smith committed
1
2
3
4
5
6
7
8
---
# Only the main Sass file needs front matter (the dashes are enough)
---

@charset "utf-8";

@import "minimal-mistakes/skins/{{ site.minimal_mistakes_skin | default: 'default' }}"; // skin
@import "minimal-mistakes"; // main partials
aiss's avatar
aiss committed
9
@import "button-group"; // main partials
Shaden Smith's avatar
Shaden Smith committed
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

//
// DeepSpeed customizations
//


.site-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
  align-self: center;
  font-weight: bold;
  font-size: $type-size-2; // DeepSpeed: increase size
}


.toc {
  font-family: $sans-serif-narrow;
  color: $gray;
  background-color: $background-color;
  border: 1px solid $border-color;
  border-radius: $border-radius;
  -webkit-box-shadow: $box-shadow;
  box-shadow: $box-shadow;
Shaden Smith's avatar
Shaden Smith committed
35
	//position: fixed;
Shaden Smith's avatar
Shaden Smith committed
36
37
38
39
40
41
42
43
44
45
46
47
48
  .nav__title {
    color: #fff;
    font-size: $type-size-6;
    background: $primary-color;
    border-top-left-radius: $border-radius;
    border-top-right-radius: $border-radius;
  }

  // Scrollspy marks toc items as .active when they are in focus
  .active a {
    @include yiq-contrasted($active-color);
  }
}
aiss's avatar
aiss committed
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69

ul.tag-box li {
  display: inline-block;
  list-style: none;
  list-style-image: none;
  margin-bottom: 10px;
  text-transform: capitalize;
}
ul.tag-box li a {
  background: #e6e6e6;
  padding: 2px 8px;
  border-radius: 3px;
  color:  #0092ca;
  text-transform: capitalize;
  font-weight: bold;
}
ul.tag-box li span.size {
  font-weight: bold;
}

.site-logo img { max-height: 200%; width: auto; }