zkouška
Podpora
Děkujeme všem našim podporovatelům za důvěru a příspěvky.
Přispívejte prosím pravidelně
<!doctype html>
<html lang="cs">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Podpora investigace.cz</title>
<style>
:root{
--yellow:#FECC0A;
--black:#212121;
--dark:#555555;
--mid:#878787;
--light:#f2f2f2;
--line:#e6e6e6;
--white:#ffffff;
}
*{box-sizing:border-box}
body{
margin:0;
font-family:Arial,Helvetica,sans-serif;
color:var(--black);
background:var(--white);
}
.support-widget{
width:min(100%,640px);
margin:0 auto;
padding:16px 18px 14px;
border:1px solid var(--line);
border-radius:10px;
background:var(--white);
}
.support-lead{
margin:0 0 12px;
font-size:16px;
line-height:1.35;
font-weight:700;
color:var(--black);
}
.mode-switch{
display:grid;
grid-template-columns:1fr 1fr;
gap:3px;
padding:3px;
margin-bottom:12px;
border-radius:8px;
background:var(--light);
}
.mode-switch button{
border:0;
border-radius:6px;
padding:7px 9px;
font:inherit;
font-size:13px;
font-weight:700;
color:var(--dark);
background:transparent;
cursor:pointer;
}
.mode-switch button.is-active{
background:var(--yellow);
color:var(--black);
}
.amounts{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:7px;
margin-bottom:9px;
}
.amount-link{
min-height:44px;
border:1px solid #d8d8d8;
border-radius:7px;
padding:8px 7px;
display:flex;
align-items:center;
justify-content:center;
flex-direction:column;
text-align:center;
text-decoration:none;
color:var(--black);
background:var(--white);
font-size:15px;
line-height:1.15;
font-weight:700;
transition:border-color .15s ease,background .15s ease,transform .15s ease;
}
.amount-link:hover{
border-color:var(--dark);
background:#fafafa;
transform:translateY(-1px);
}
.amount-link:focus-visible,
.mode-switch button:focus-visible{
outline:3px solid rgba(254,204,10,.45);
outline-offset:2px;
}
.amount-link small{
display:block;
margin-top:3px;
color:var(--mid);
font-size:10px;
font-weight:400;
}
.note{
margin:0;
color:var(--mid);
font-size:10px;
line-height:1.35;
text-align:center;
}
[hidden]{display:none!important}
``
@media(max-width:620px){
.support-widget{
width:100%;
padding:14px 12px 12px;
border-left:0;
border-right:0;
border-radius:0;
}
.support-lead{font-size:15px}
.amounts{
grid-template-columns:1fr 1fr;
gap:7px;
}
.amount-link{
min-height:42px;
font-size:15px;
}
}
</style>
</head>
<body>
``
<section class="support-widget" aria-labelledby="support-title">
<p id="support-title" class="support-lead">Pomozte nám odkrývat důležité kauzy.</p>
``
<div class="mode-switch" role="tablist" aria-label="Typ podpory">
<button type="button" role="tab" aria-selected="true" aria-controls="monthly-panel" id="monthly-tab" class="is-active" data-mode="monthly">Měsíčně</button>
<button type="button" role="tab" aria-selected="false" aria-controls="once-panel" id="once-tab" data-mode="once">Jednorázově</button>
</div>
``
<div id="monthly-panel" role="tabpanel" aria-labelledby="monthly-tab">
<div class="amounts">
<a class="amount-link" href="https://donate.stripe.com/bJe28j61Q5QNgS50MB0000h">
150 Kč<small>měsíčně</small>
</a>
<a class="amount-link" href="https://donate.stripe.com/4gM8wH0Hw92ZatHeDr0000i">
300 Kč<small>měsíčně</small>
</a>
<a class="amount-link" href="https://buy.stripe.com/00weV52PE5QN31f1QF0000j">
500 Kč<small>měsíčně</small>
</a>
<a class="amount-link" href="https://donate.stripe.com/dRm28jdui92ZgS53YN0000n">
1 000 Kč<small>měsíčně</small>
</a>
</div>
</div>
``
<div id="once-panel" role="tabpanel" aria-labelledby="once-tab" hidden>
<div class="amounts">
<a class="amount-link" href="https://donate.stripe.com/dRmaEPgGu1Ax31f9j70000g">150 Kč</a>
<a class="amount-link" href="https://donate.stripe.com/6oUdR189Y5QNeJX2UJ00006">500 Kč</a>
<a class="amount-link" href="https://donate.stripe.com/00w28j2PE5QN59nbrf0000l">1 000 Kč</a>
<a class="amount-link" href="https://donate.stripe.com/9B68wH0Hw7YVbxLbrf0000k">Jiná částka</a>
</div>
</div>
``
<p class="note">Platba proběhne bezpečně přes Stripe.</p>
</section>
``
<script>
(() => {
const monthlyTab = document.getElementById('monthly-tab');
const onceTab = document.getElementById('once-tab');
const monthlyPanel = document.getElementById('monthly-panel');
const oncePanel = document.getElementById('once-panel');
``
function activateMode(mode){
const monthly = mode === 'monthly';
monthlyTab.classList.toggle('is-active', monthly);
onceTab.classList.toggle('is-active', !monthly);
monthlyTab.setAttribute('aria-selected', monthly ? 'true' : 'false');
onceTab.setAttribute('aria-selected', monthly ? 'false' : 'true');
monthlyPanel.hidden = !monthly;
oncePanel.hidden = monthly;
}
``
document.querySelectorAll('.mode-switch button').forEach(button => {
button.addEventListener('click', () => activateMode(button.dataset.mode));
});
``
activateMode('monthly');
})();
</script>
``
</body>
</html>
Chci přispět přes Darujme.cz
Chci si předplatit bonusový obsah

Chci přispět převodem pomocí QR kódu
DÁ SE UDĚLAT, ABY TEN QR KOD MĚL URL - TAK, ABY SI JEJ NĚKDO MOHL STÁHNOUT DO MOBILU A NÁSLEDNĚ JEJ POUŽÍT V BANCE?

Chcete nás podpořit? Více informací najdete zde.