Files
@ 587a9a50643f
Branch filter:
Location: C3L/C3L-Membership-Online-Form/c3l_membership/static/pdf.css
587a9a50643f
1.5 KiB
text/css
Use flexbox layout and add qrcode for automatic data import into MeVeSc
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 | @page {
size: A4;
margin-top: 1cm;
margin-left: 2cm;
margin-right: 2cm;
margin-bottom: 1cm;
}
body {
font-size: 1em;
}
img {
width: 250px;
display: block;
margin-bottom: 1.5em;
}
h1 {
text-decoration: underline;
font-size: 1.2em;
}
p {
text-align: justify;
margin-bottom: 1em;
}
.logos {
display: flex;
justify-content: space-between;
align-items: center;
}
.data {
margin-top: 0;
margin-bottom: 1em;
display: flex;
justify-content: space-between;
flex-direction: column;
}
.data > div {
display: flex;
justify-content: space-between;
}
.data > div > div:first-child {
font-weight: 700;
}
footer {
position: fixed;
bottom: 0;
font-size: 0.75em;
text-align: center;
width: 100%;
}
.signature {
padding-top: 1em;
}
.membersignature {
height: 2em;
width: 45%;
border-bottom: 1px solid #000;
padding-bottom: 4em;
margin-top: -1em;
position: relative;
float: left;
}
.adminsignature {
height: 2em;
width: 45%;
border-top: 1px solid #000;
padding-top: 1px;
margin-top: 5em;
position: relative;
float: left;
margin-left: 2em;
}
.bank {
list-style-type: none;
padding: 0;
}
.btccontainer {
display: flex;
justify-content: space-between;
}
.btctext {
list-style-type: none;
margin: 0;
padding: 0;
}
.btcqrcode {
width: 10em;
}
.digicash {
display: flex;
justify-content: space-evenly;
}
.digicash img {
width: 10em;
}
a {
text-decoration: none;
}
|