

Bibliotheek
/

Kets Pulls
Geen bestand gekozen
Kets Pulls
Zoekopdracht

Nieuw

Alles

Afbeeldingen

Bestanden


Naam
Gewijzigd
Grootte

Bibliotheek
/
Kets Pulls
/
responsive(1).css
Meer handelingen
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
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .feature-grid, .card-grid { grid-template-columns: repeat(2, 1fr); }
  .vault-stats { grid-template-columns: repeat(2, 1fr); }

  .header-content {
    min-height: 74px;
  }

  .logo img {
    width: 150px;
    height: 58px;
  }

  .menu-toggle { display: block; }

  .navigation {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 12px;
    border: 1px solid #2b2b34;
    border-radius: 12px;
    background: #111116;
  }

  .navigation.open { display: flex; }

  .navigation a {
    min-height: auto;
    padding: 12px;
  }

  .navigation a::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), 1180px); }
  .hero { padding-top: 70px; }
  .feature-grid, .card-grid, .vault-stats { grid-template-columns: 1fr; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .footer-content { align-items: flex-start; flex-direction: column; }
  .vault-hero { padding-top: 110px; }
}


