-
Notifications
You must be signed in to change notification settings - Fork 2
/
pliss23.hss
92 lines (80 loc) · 3.16 KB
/
pliss23.hss
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
/*=====================================================================*/
/* serrano/diffusion/talk/pliss23/pliss23.hss */
/* ------------------------------------------------------------- */
/* Author : Manuel Serrano */
/* Creation : Wed Oct 14 14:41:22 2015 */
/* Last change : Fri Aug 25 09:52:49 2023 (serrano) */
/* Copyright : 2015-23 Manuel Serrano */
/* ------------------------------------------------------------- */
/* ECOOP22 presentation CSS */
/*=====================================================================*/
/*---------------------------------------------------------------------*/
/* Imports */
/*---------------------------------------------------------------------*/
@import 'math.hss';
@import 'fonts.hss?hss';
@import 'theme.hss?hss';
@import 'listings.hss?hss';
@import 'markdown.hss?hss';
/*---------------------------------------------------------------------*/
/* body */
/*---------------------------------------------------------------------*/
body {
background-color: var(--background);
}
/*---------------------------------------------------------------------*/
/* slides */
/*---------------------------------------------------------------------*/
hopimpress-slide {
width: var(--slideWidth);
height: var(--slideHeight);
font-family: Kaffeesatz;
background-color: var(--background);
font-size: var(--fontSize);
}
/*---------------------------------------------------------------------*/
/* slide-title */
/*---------------------------------------------------------------------*/
.slide-title {
font-weight: bold;
color: var(--greydark);
text-align: center;
font-size: 110%;
}
/*---------------------------------------------------------------------*/
/* toc */
/*---------------------------------------------------------------------*/
hopimpress-select-content {
column-count: 3;
}
hopimpress-select {
font-size: 100%;
}
/*---------------------------------------------------------------------*/
/* misc */
/*---------------------------------------------------------------------*/
.center {
text-align: center;
margin-left: auto;
margin-right: auto;
}
.hidden {
display: none;
}
/*---------------------------------------------------------------------*/
/* important */
/*---------------------------------------------------------------------*/
hopimpress-slide.important {
background-color: var(--red);
color: var(--greyextralight);
font-weight: bold;
}
hopimpress-slide.important .important {
color: var(--yellow);
}
.important {
color: var(--red);
}
.care {
color: var(--citron);
}