-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmitheme.scss
More file actions
79 lines (64 loc) · 1.92 KB
/
Copy pathmitheme.scss
File metadata and controls
79 lines (64 loc) · 1.92 KB
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
/*-- scss:defaults --*/
// colors
$teal-light1: #fcfcfc;
$teal-light2: #745775;
$teal: #266a7e;
$teal-dark1: #7e266a;
$teal-dark2: #267e3a;
$orange: #9ac6c5;
$orange-light:#a5e6ba;
$orange-dark: #263e7e;
/*-- scss:defaults --*/
@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
// fonts
$font-family-sans-serif: Lato, sans-serif !default;
$presentation-font-size-root: 30px;
$presentation-font-smaller: 0.7;
$presentation-line-height: 1.2;
/* Ajustar el tamaño de la letra del cuerpo */
body {
font-size: 6px; /* Puedes ajustar este valor según lo que desees */
}
// colors
$body-bg: #fefefe !default;
$body-color: #1e1b1c !default;
$link-color: $orange-dark !default;
$selection-bg: #26351c;
// Subtítulo en negrita y color violeta
.reveal .subtitle {
/* font-weight: bold; Negrita */
color: $body-color; /* Violeta (definido como $teal) */
font-size: 2em; /* Ajusta el tamaño según lo desees */
}
// Autor con fuente más pequeña que el subtítulo
.reveal .author {
font-size: 0.7em; /* Más pequeño que el subtítulo */
color: $teal; /* Mantener color del texto o personalizar */
margin-top: 0.5em; /* Espacio entre subtítulo y autor */
}
// headings
// headings
$presentation-heading-font: "TT fors", sans-serif !default;
$presentation-heading-color: #263e7e !default;
$presentation-heading-line-height: 1.3;
$presentation-h2-font-size: 1.4em;
/*-- scss:rules --*/
.reveal a {
line-height: 1.3em;
}
.section {
&:is(.slide-background) {
background: $orange-dark;
}
}
.section a {
color: #bfe4fe !important; /* Cambia el color de los links a blanco */
}
.section a:hover {
color: #bfe4fe !important; /* Cambia el color de los links al pasar el mouse */
}
// Background color sections
section.has-dark-background a, section.has-dark-background a:hover {
color: #bfe4fe !important;
}