forked from amyjko/critically-conscious-computing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
163 lines (138 loc) · 5.39 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<base href="https://criticallyconsciouscomputing.org/">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta property="og:title" content="Critically Conscious Computing: Methods for Secondary Education">
<meta property="og:image" content="https://criticallyconsciouscomputing.org/images/Book_Cover.png">
<meta property="og:description" content="A critical examination of CS foundations and how to teach them.">
<meta property="og:url" content="https://criticallyconsciouscomputing.org">
<meta name="twitter:image:alt" content="On the left, the form of a face being analyzed by facial recognition, on the bottom, a row of men in prison jump suits against a fence, and above, the Amazon smile logo representing the sun.">
<meta name="twitter:card" content="summary_large_image">
<!-- Bookish -->
<script src="https://bookish.press/bookish.js" defer></script>
<link rel="stylesheet" href="https://bookish.press/bookish.css">
<link rel="apple-touch-icon" sizes="180x180" href="https://bookish.press/images/icons/ios-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://bookish.press/images/icons/favicon.png">
<style>
@import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&display=block');
@import url('https://fonts.googleapis.com/css2?family=DM+Mono&display=block');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@500&display=block');
@font-face {
font-family: "Modum";
font-display: block;
src: url('fonts/Modum.woff2') format("woff2"),
url('fonts/Modum.otf') format('opentype');
}
@font-face {
font-family: "Modum";
font-display: block;
src: url('fonts/Modum Italic.woff2') format('woff2'),
url('fonts/Modum Italic.otf') format('opentype');
font-style: italic;
}
@font-face {
font-family: "Modum";
font-display: block;
src: url('fonts/Modum Bold.woff2') format('woff2'),
url('fonts/Modum Bold.otf') format('opentype');
font-weight: bold;
}
@font-face {
font-family: "Modum";
font-display: block;
src: url('fonts/Modum Bold Italic.woff2') format('woff2'),
url('fonts/Modum Bold Italic.otf') format('opentype');
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: "Modum Extra";
font-display: block;
src: url('fonts/Modum ExtraBold.woff2') format('woff2'),
url('fonts/Modum ExtraBold.otf') format('opentype');
font-weight: bold;
}
@font-face {
font-family: "Epilogue";
font-display: block;
src: url('fonts/Epilogue-Light.woff2') format('woff2');
font-weight: 300;
}
:root {
/* Background colors */
--bookish-background-color: #FFFFFF;
--bookish-block-background-color: #FCFAFA;
--bookish-error-background-color: #F8D7DA;
/* Border colors */
--bookish-border-color-light: #E0E0E0;
--bookish-border-color-bold: #000000;
/* Foreground colors */
--bookish-paragraph-color: #000000;
--bookish-muted-color: #9AA1A7;
--bookish-highlight-color: #E8AF22;
--bookish-comment-color: #257F31;
--bookish-error-color: #721C24;
--bookish-link-color: #1B499C;
--bookish-bullet-color: #EB2C27;
/* Fonts */
--bookish-paragraph-font-family: "Modum", serif;
--bookish-header-font-family: "Arvo", serif;
--bookish-code-font-family: "DM Mono", monospace;
--bookish-bullet-font-family: "M Plus Rounded 1c";
/* Font sizes */
--bookish-paragraph-font-size: 14pt;
--bookish-block-font-size: 11pt;
--bookish-small-font-size: 9pt;
--bookish-title-font-size: 2.4rem;
--bookish-header-1-font-size: 2rem;
--bookish-header-2-font-size: 1.5rem;
--bookish-header-3-font-size: 1rem;
--bookish-code-font-size: 11pt;
/* Font weights */
--bookish-paragraph-font-weight: 400;
--bookish-bold-font-weight: 700;
--bookish-link-font-weight: 400;
--bookish-header-font-weight: 700;
--bookish-code-font-weight: 400;
--bookish-bullet-font-weight: 500;
/* Line heights */
--bookish-paragraph-line-height: 2.2em;
--bookish-paragraph-line-height-tight: 1.5em;
--bookish-header-line-height: 1.4em;
/* Spacing */
--bookish-paragraph-spacing: 1.8em;
--bookish-header-spacing: 2rem;
--bookish-roundedness: 5px;
--bookish-indent: 10%;
--bookish-inline-padding: 0.25rem;
--bookish-block-padding: 0.75em;
}
.bookish-dark {
--bookish-background-color: #1C1C1C;
--bookish-block-background-color: #333333;
--bookish-error-background-color: #721C24;
--bookish-border-color-light: #444444;
--bookish-border-color-bold: #DADADA;
--bookish-paragraph-color: #DADADA;
--bookish-muted-color: #CCCCCC;
--bookish-highlight-color: #5c4d28;
--bookish-comment-color: #1c4722;
--bookish-error-color: #F8D7DA;
--bookish-link-color: #73a3fa;
--bookish-bullet-color: #721C24;
}
</style>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9W8S26N2J0"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-9W8S26N2J0');
</script>
</head>
<body></body>
</html>