home
·
contact
·
privacy
projects
/
guiltcards
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fix single-card view CSS.
[guiltcards]
/
views
/
cards_print.tpl
1
% include('_meta_head.tpl')
2
<style>
3
% include('_card.css')
4
.card {
5
page-break-before: always;
6
width: 100vw;
7
min-height: 100vh;
8
border: 5vw solid #aaaaaa;
9
}
10
.title {
11
text-align: center;
12
font-size: 7vw;
13
}
14
.answer {
15
padding: 2vw;
16
}
17
.paragraph, .answer, .prompt {
18
font-size: 4vw;
19
padding-left: 4vw;
20
padding-right: 4vw;
21
}
22
</style>
23
<body>
24
% for card in cards:
25
% include('_card.tpl')
26
% end
27
<body>
28
% include('_meta_foot.tpl')