forked from meghall06/rladiesparis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththeme.scss
167 lines (142 loc) · 3.59 KB
/
theme.scss
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
@import"https://fonts.googleapis.com/css?family=Montserrat:700";
@import"https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic";
/*-- scss:defaults --*/
$primary-color: #C5ACAA;
$body-bg: #F9E0D9;
$body-color: #37392E;
$navbar-bg: #6A395B;
$link-color: $navbar-bg;
$navbar-font-family: "Montserrat";
$headings-font-family: "Montserrat";
$headings-color: $navbar-bg;
$font-family-base: "Open Sans";
$code-block-bg: #F8F2F3;
$code-block-border: true;
$code-block-border-right: $navbar-bg !important;
$code-block-border-radius: 10px;
$code-color: $navbar-bg;
$code-bg: $code-block-bg;
$code-border-radius: 25px;
$tabset-border-color: $navbar-bg;
$border-color: $navbar-bg;
/*-- scss:rules --*/
.navbar-title {
font-family: $headings-font-family;
}
.btn-primary {
color: $body-bg;
background-color: #6A395B;
border: 1px solid transparent;
width: 25%;
margin-bottom: 0;
text-align: center;
padding: 0px 2px;
border-radius: 25px;
vertical-align: middle;
}
.btn-primary:hover {
color: #ffffff;
background-color: #978e83;
border-color: white;
}
.btn-primary:focus {
color: #ffffff;
background-color: #978e83;
border-color: white;
}
.panel-tabset [role="tablist"] {
border-bottom: 5px solid $tabset-border-color;
list-style: none;
margin: 0;
padding-bottom: 5px;
width: 100%;
}
.panel-tabset [role="tab"] {
border: 1px solid $tabset-border-color;
border-top-color: $tabset-border-color;
display: block;
padding: 1em 1em;
text-decoration: none;
font-size: 0.75em;
border-radius: 10px;
background-color: #ffffff;
color: $navbar-bg;
margin: 2px;
}
.panel-tabset [role="tab"][aria-selected="true"] {
background-color: $navbar-bg;
color: $body-bg;
}
details > summary {
color: $navbar-bg;
font-size: 1em;
border-radius: 20px;
background-color: $code-bg;
padding-left: 10px;
margin-bottom: 10px;
font-family: $font-family-monospace;
}
details {
margin-bottom: 0px;
}
.sidebar nav[role=doc-toc] ul>li>a.active {
border-left: 5px solid $navbar-bg;
color: $navbar-bg !important;
font-weight: bold !important;
}
.sidebar nav[role=doc-toc] ul>li>ul>li>a.active {
border-left: 5px solid $navbar-bg;
color: $navbar-bg !important;
}
.sidebar nav[role=doc-toc]>ul a {
border-left: 1px solid $navbar-bg;
padding-left: 0.6rem;
background-color: $code-bg;
}
/* formats the title of the table of contents */
.sidebar nav[role=doc-toc]>h2, .sidebar nav[role=doc-toc]>.h2 {
font-size: 1rem;
border-bottom: 1px solid $navbar-bg;
padding-bottom: 0.6rem;
font-weight: bold !important;
}
div.sourceCode {
background-color: #f8f2f3;
border: 2px solid $navbar-bg;
border-radius: 0.25rem;
margin-right: 10px;
}
/* gets rid of the border and reduces padding in tables */
thead, tbody, tfoot, tr, td, th {
border-style: none;
padding-bottom: 2px !important;
}
/* changes border color of note callout */
div.callout-note.callout {
border-left-color: $navbar-bg;
}
/* changes header background of note callout */
div.callout-note.callout-style-default>.callout-header {
background-color: $code-bg;
color: $navbar-bg;
}
/* makes the font size for the subheadings in the TOC a little smaller */
.sidebar nav[role=doc-toc] ul>li>ul>li{
font-size: 0.85em;
}
/* css styles */
blockquote {
border-left: 10px solid $navbar-bg !important;
text-align: left;
background-color: $code-bg !important;
color: $body-color !important;
padding: 0;
font-size: 0.65em;
font-style: italic !important;
border-radius: 20px;
}
/*
.sidebar nav[role=doc-toc] ul {
border-top: 1px solid $navbar-bg;
}
*/