-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.scss
145 lines (109 loc) · 2.89 KB
/
base.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
/*-- scss:defaults --*/
$primary: #eb661b !default;
$font-size-root: 18px !default;
/*-- scss:rules --*/
.sidebar-title {
color: #eb661b;
}
div.sidebar-item-container .active {
font-weight: bold;
}
.sidebar nav[role=doc-toc] ul>li>a.active, .sidebar nav[role=doc-toc] ul>li>ul>li>a.active{
font-weight: bold;
}
img.quarto-cover-image {
box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
/* Headings ------------------------------------------------------ */
#title-block-header.quarto-title-block.default .quarto-title h1.title {
margin-bottom: 0.5rem;
}
h2 { margin-top: 1.5rem; margin-bottom: 1rem; font-size: 1.4rem; font-weight: 700; margin-left: -0.8em; }
h3 { margin-top: 1em; font-size: 1.2rem; font-weight: 600; margin-left: -0.8em; }
h4 { margin-top: 1em; font-size: 1.1rem; font-weight: 600; margin-left: -0.8em; }
h5 { margin-top: 1em; font-size: 1rem; font-weight: 600; margin-left: -0.8em; }
h6 { margin-top: 0.5em; margin-bottom: 0.5em; font-size: 1rem; font-weight: 600; margin-left: -0.8em; }
.quarto-section-identifier {
color: #6C6C6C;
font-weight: normal;
}
/* Code ------------------------------------------------ */
code {
color: #373a3c;
}
code a:any-link {
text-decoration: underline;
text-decoration-color: #ccc;
}
pre {
background-image: linear-gradient(160deg,#f8f8f8 0,#f1f1f1 100%);
}
/*-- scss:rules --*/
/*
.bibliografia h2 {margin-top: 0.5em !important;}
.bibliografia h3 {margin-top: 0.5em !important;}
.bibliografia h4 {margin-top: 0.5em !important;}
.parameters h2 {margin-top: 0.5em !important;}
.parameters h3 {margin-top: 0.5em !important;}
.parameters h4 {margin-top: 0.5em !important;}
.ejercicio h2 {margin-top: 0.5em !important;}
.ejercicio h3 {margin-top: 0.5em !important;}
.ejercicio h4 {margin-top: 0.5em !important;}
*/
.bibliografia {
font-size: .9em;
color: black;
background-color: #fff5e6;
border-radius: 10px;
padding-top: 1px;
padding-bottom: 10px;
padding-left: 20px;
padding-right: 10px;
}
.parameters {
background-color: #CCE5FF;
border-radius: 10px;
padding-top: 1px;
padding-bottom: 10px;
padding-left: 20px;
padding-right: 10px;
}
.badCode {
color: red;
background-color: #d9edf7;
border-color: #bce8f1;
}
.ejercicio h2 {
margin-top: 0.9em !important;
font-size: 1.4em;
margin-left: -0.8em;
}
.ejercicio h3 {
margin-top: 0.9em !important;
font-size: 1.4em;
margin-left: -0.8em;
}
.ejercicio h4 {
margin-top: 0.9em !important;
font-size: 1.4em;
margin-left: -0.8em;
}
.ejercicio {
font-size: .9em;
color: black;
background-color: #E0E0E0 !important;
border-color: #bce8f1 !important;
border-radius: 10px;
padding-top: 1px;
padding-bottom: 10px;
padding-left: 20px;
padding-right: 10px;
}
.cell-output {
background: #f7f5fc !important;
color: #707070 !important;
font-size: .8em;
}
.bg-output {
background: #f7f5fc !important;
}