-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaqua.css
143 lines (120 loc) · 2.5 KB
/
aqua.css
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
/* @theme aqua */
@import "default";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");
:root {
font-family: Inter, Helvetica, Arial;
--brand-color: rgb(2 136 209);
--logo-url: url(https://raw.githubusercontent.com/marp-team/marp/main/marp.png);
--logo-blue-url: url(https://raw.githubusercontent.com/marp-team/marp/main/marp-dark.png);
}
section {
padding: 30px 40px 30px 40px;
background-image: var(--logo-url);
background-repeat: no-repeat;
background-size: 130px;
background-position: right 40px top 40px;
justify-content: start;
}
section h1 {
font-size: 1.6rem;
margin-bottom: 15px;
margin-right: 150px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: var(--brand-color);
font-weight: 700;
}
a {
color: #9d30a6;
}
code {
background-color: rgba(146, 146, 146, 0.2);
}
pre {
background-color: #ece1ecad;
}
p {
margin-bottom: 20px;
}
ul {
margin-bottom: 20px;
}
table th {
background: var(--brand-color);
color: white;
}
table th,
table td {
font-size: 0.8rem;
border: 2px solid #0fc8f2;
}
/* https://github.com/yhatt/marp/issues/263 */
section::after {
font-size: 0.75em;
color: var(--brand-color);
content: attr(data-marpit-pagination) " / " attr(data-marpit-pagination-total);
}
/* the "center" keyword centers the image - may break, careful */
img[alt~="center"] {
display: block;
margin: 0 auto;
}
/* || SECTION CLASS: lead */
section.lead {
padding: 70px 70px 70px 70px;
background-size: 240px;
background-position: left 70px top 100px;
}
section.lead h1 {
padding-top: 220px;
font-size: 2rem;
height: 4rem;
margin-bottom: 80px;
margin-right: 0px;
/* display: flex; */
/* align-items: flex-end; */
}
section.lead h2 {
margin-top: 0px;
margin-bottom: 0px;
}
/* || SECTION CLASS: blue */
section.blue {
background-image: var(--logo-blue-url);
background-color: var(--brand-color);
color: #ffffff;
justify-content: center;
}
section.blue > h1,
section.blue > h2,
section.blue > h3,
section.blue > h4,
section.blue > h5,
section.blue > h6 {
color: #ffffff;
}
section.blue h1 {
font-size: 2rem;
margin-right: 0px;
}
section.blue > a {
color: #303ca6;
}
section.blue::after,
section.blue > footer,
section.blue > header {
color: #ffffff;
}
/* || SECTION CLASS: tinytext */
/* new class that makes p, ul, and blockquote text smaller */
/* might be useful for the References slide, use <!-- _class: tinytext --> */
section.tinytext > p,
section.tinytext > ul,
section.tinytext > blockquote {
font-size: 0.65em;
}