Skip to content

Commit ad0901d

Browse files
author
github-actions
committed
Update from data repository
1 parent a96e1f1 commit ad0901d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+5093
-0
lines changed

_software/Kezdi.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: Kezdi.jl
33
description: A data analysis package for economists
44
date: 2024-07-12
5+
language: julia
56
categories:
67
- julia
78
code: |-

_software/Targets.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: Targets.jl
33
description: Computational pipeline management for Julia
44
date: 2024-08-15
5+
language: julia
56
categories:
67
- julia
78
code: |-

_software/eventbaseline.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: eventbaseline
33
description: Correct Event Study After `xthdidregress`
44
date: 2024-01-23
5+
language: stata
56
categories:
67
- stata
78
code: |-

_software/here.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: here
33
description: A simpler way to find your files.
44
date: 2020-07-31
5+
language: stata
56
categories:
67
- stata
78
code: |-

_software/xt2treatments.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: xt2treatments
33
description: event studies with two treatments
44
date: 2024-05-21
5+
language: stata
56
categories:
67
- stata
78
code: |-

assets/css/main.css

Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
@tailwind base;
2+
@tailwind components;
3+
@tailwind utilities;
4+
5+
@layer base {
6+
@font-face {
7+
font-family: 'Brockmann';
8+
src: url(../fonts/brockmann-regular.woff2) format("woff2");
9+
font-weight: 400;
10+
}
11+
12+
@font-face {
13+
font-family: 'Brockmann';
14+
src: url(../fonts/brockmann-regularitalic.woff2) format("woff2");
15+
font-weight: 400;
16+
font-style: italic;
17+
}
18+
19+
@font-face {
20+
font-family: 'Brockmann';
21+
src: url(../fonts/brockmann-bold.woff2) format("woff2");
22+
font-weight: 700;
23+
}
24+
}
25+
26+
.swiper-pagination {
27+
@apply flex justify-center space-x-1.5;
28+
}
29+
.swiper-pagination-bullet {
30+
@apply w-2.5 h-2.5 bg-gray-3;
31+
}
32+
.swiper-pagination-bullet-active {
33+
@apply bg-red w-7;
34+
}
35+
36+
.prose table {
37+
@apply bg-blue rounded-md text-white overflow-x-auto block whitespace-nowrap;
38+
}
39+
.prose table th {
40+
@apply text-left text-white px-5 pt-3;
41+
}
42+
.prose table td {
43+
@apply px-5;
44+
}
45+
.prose tbody tr {
46+
@apply border-none;
47+
}
48+
49+
.language-shell {
50+
@apply pr-4;
51+
}
52+
/* Error */ .highlight .err { color:#960050;background-color:#1e0010 }
53+
/* CodeLine */ .highlight .cl { }
54+
/* LineLink */ .highlight .lnlinks { outline:none;text-decoration:none;color:inherit }
55+
/* LineTableTD */ .highlight .lntd { vertical-align:top;padding:0;margin:0;border:0; }
56+
/* LineTable */ .highlight .lntable { border-spacing:0;padding:0;margin:0;border:0; }
57+
/* LineHighlight */ .highlight .hl { background-color:#3c3d38 }
58+
/* LineNumbersTable */ .highlight .lnt { white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f }
59+
/* LineNumbers */ .highlight .ln { white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f }
60+
/* Line */ .highlight .line { display:flex; }
61+
/* Keyword */ .highlight .k { color:#E61E25 }
62+
/* KeywordConstant */ .highlight .kc { color:#E61E25 }
63+
/* KeywordDeclaration */ .highlight .kd { color:#E61E25 }
64+
/* KeywordNamespace */ .highlight .kn { color:#148FFF }
65+
/* KeywordPseudo */ .highlight .kp { color:#E61E25 }
66+
/* KeywordReserved */ .highlight .kr { color:#E61E25 }
67+
/* KeywordType */ .highlight .kt { color:#E61E25 }
68+
/* Name */ .highlight .n { }
69+
/* NameAttribute */ .highlight .na { color:#a6e22e }
70+
/* NameBuiltin */ .highlight .nb { }
71+
/* NameBuiltinPseudo */ .highlight .bp { }
72+
/* NameClass */ .highlight .nc { color:#a6e22e }
73+
/* NameConstant */ .highlight .no { color:#E61E25 }
74+
/* NameDecorator */ .highlight .nd { color:#a6e22e }
75+
/* NameEntity */ .highlight .ni { }
76+
/* NameException */ .highlight .ne { color:#a6e22e }
77+
/* NameFunction */ .highlight .nf { color:#a6e22e }
78+
/* NameFunctionMagic */ .highlight .fm { }
79+
/* NameLabel */ .highlight .nl { }
80+
/* NameNamespace */ .highlight .nn { }
81+
/* NameOther */ .highlight .nx { color:#a6e22e }
82+
/* NameProperty */ .highlight .py { }
83+
/* NameTag */ .highlight .nt { color:#148FFF }
84+
/* NameVariable */ .highlight .nv { }
85+
/* NameVariableClass */ .highlight .vc { }
86+
/* NameVariableGlobal */ .highlight .vg { }
87+
/* NameVariableInstance */ .highlight .vi { }
88+
/* NameVariableMagic */ .highlight .vm { }
89+
/* Literal */ .highlight .l { color:#ae81ff }
90+
/* LiteralDate */ .highlight .ld { color:#9795B5 }
91+
/* LiteralString */ .highlight .s { color:#9795B5 }
92+
/* LiteralStringAffix */ .highlight .sa { color:#9795B5 }
93+
/* LiteralStringBacktick */ .highlight .sb { color:#9795B5 }
94+
/* LiteralStringChar */ .highlight .sc { color:#9795B5 }
95+
/* LiteralStringDelimiter */ .highlight .dl { color:#9795B5 }
96+
/* LiteralStringDoc */ .highlight .sd { color:#9795B5 }
97+
/* LiteralStringDouble */ .highlight .s2 { color:#9795B5 }
98+
/* LiteralStringEscape */ .highlight .se { color:#ae81ff }
99+
/* LiteralStringHeredoc */ .highlight .sh { color:#9795B5 }
100+
/* LiteralStringInterpol */ .highlight .si { color:#9795B5 }
101+
/* LiteralStringOther */ .highlight .sx { color:#9795B5 }
102+
/* LiteralStringRegex */ .highlight .sr { color:#9795B5 }
103+
/* LiteralStringSingle */ .highlight .s1 { color:#9795B5 }
104+
/* LiteralStringSymbol */ .highlight .ss { color:#9795B5 }
105+
/* LiteralNumber */ .highlight .m { color:#ae81ff }
106+
/* LiteralNumberBin */ .highlight .mb { color:#ae81ff }
107+
/* LiteralNumberFloat */ .highlight .mf { color:#ae81ff }
108+
/* LiteralNumberHex */ .highlight .mh { color:#ae81ff }
109+
/* LiteralNumberInteger */ .highlight .mi { color:#ae81ff }
110+
/* LiteralNumberIntegerLong */ .highlight .il { color:#ae81ff }
111+
/* LiteralNumberOct */ .highlight .mo { color:#ae81ff }
112+
/* Operator */ .highlight .o { color:#148FFF }
113+
/* OperatorWord */ .highlight .ow { color:#148FFF }
114+
/* Punctuation */ .highlight .p { }
115+
/* Comment */ .highlight .c { color:#75715e }
116+
/* CommentHashbang */ .highlight .ch { color:#75715e }
117+
/* CommentMultiline */ .highlight .cm { color:#75715e }
118+
/* CommentSingle */ .highlight .c1 { color:#75715e }
119+
/* CommentSpecial */ .highlight .cs { color:#75715e }
120+
/* CommentPreproc */ .highlight .cp { color:#75715e }
121+
/* CommentPreprocFile */ .highlight .cpf { color:#75715e }
122+
/* Generic */ .highlight .g { }
123+
/* GenericDeleted */ .highlight .gd { color:#148FFF }
124+
/* GenericEmph */ .highlight .ge { font-style:italic }
125+
/* GenericError */ .highlight .gr { }
126+
/* GenericHeading */ .highlight .gh { }
127+
/* GenericInserted */ .highlight .gi { color:#a6e22e }
128+
/* GenericOutput */ .highlight .go { }
129+
/* GenericPrompt */ .highlight .gp { }
130+
/* GenericStrong */ .highlight .gs { font-weight:bold }
131+
/* GenericSubheading */ .highlight .gu { color:#75715e }
132+
/* GenericTraceback */ .highlight .gt { }
133+
/* GenericUnderline */ .highlight .gl { }
134+
/* TextWhitespace */ .highlight .w { }

0 commit comments

Comments
 (0)