<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
  scroll-behavior: smooth; /* Powoduje pĹ‚ynne przewijanie strony np. przy skoku do jakiejĹ› zakĹ‚adki: &lt;a href="sekcja2"&gt;&lt;/a&gt; */
}

body {
  margin: auto; /* Aby nie byĹ‚o np. biaĹ‚ego maginesu wokĂłĹ‚ po lewej i prawej stronie tabeli, albo marginesu z lewej strony menu gĂłrnego */
  padding-top: 60px;
  font-family: Calibri;
}

@media screen and (max-width: 960px) {
  body {
    font-family: Helvetica;
    font-size: 4vw;
    padding-top: 15px;
    padding-bottom: 0;
  }
}

#obrazekTytulowy {
  display: block;        /*  Aby wycentrowaÄ‡ */
  margin: 0 auto 0 auto; /*  Aby wycentrowaÄ‡ */
}

.przycisk {
  display: block;
  padding: 0.5em 1em;
  border: 0.2em solid red;
  margin: 2em 1em 0 1em;
  border-radius: 0.3em;
  text-decoration: none;
  font-weight: bold;
  color: black;
  background-color: rgba(255, 0, 0, 0.3);
}

@media screen and (min-width: 961px) {
  .przycisk {
    display: none;
  }
}

.tabPlanowane {
  width: 100%;
  background-color: #f1f1c1;
  border-collapse: collapse;
}

@media screen and (min-width: 961px) {
  .tabPlanowane {
    margin-top: 30px;
  }
}

table a {
  outline: 0;
  color: inherit;
}

@media screen and (max-width: 960px) {
  caption {
    text-align: left;
    padding: 6vw 0 1vw 2vw;
  }
}

@media screen and (min-width: 961px) {
  caption {
    color: red;
    font-size: 200%;
    text-shadow: 2px 2px 2px grey;
  }
}


th, td {
  text-align: center;
  border: 1px solid black;
  padding: 5px;
}

th {
  background: #cfe2cf; /* zielonkawy */
}

@media screen and (max-width: 960px) {
  th, td {
    padding: 1vw;
    font-size: 0.9em;
  }
}

@media screen and (max-width: 960px) and (orientation: landscape) {
  th, td {
    font-size: 0.7em;
  }
}


.tabPlanowane th:last-child, .tabPlanowane td:last-child {
  display: none;
}

@media screen and (max-width: 960px) {
  .tabPlanowane th:not(:last-child), .tabPlanowane td:not(:last-child) {
    display: none;
  }
  .tabPlanowane td:last-child {
    display: table-cell;
    border-left: 2px solid black;
    text-align: left;
  }
}




cel {
  color: red;
  font-weight: bold;
}

.zakladka {
  position: absolute;
  top: -48px;
  left: 0px;
}


.flagaIMG, .mapaIMG, .goryIMG, .nowoscIMG {
  vertical-align: middle;
}

@media screen and (min-width: 961px) {
  .goryIMG, .nowoscIMG {
    float: right;
  }

  .nowoscIMG {
    animation: obracanie 4s linear infinite;
  }

  @keyframes obracanie {
    100% {
      transform: rotate(360deg);
    }
  }  
}

.nowosc_old {
  float: right;
  animation: obrotY 2s infinite;
  animation-timing-function: linear;
}

@keyframes obrotY {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.podjazd {
  width: 100%;
  border-collapse: collapse;
}

.podjazd td {
  border: 0px;
  padding-left: 0px;
  padding-right: 0px; 
  display: table-cell;
}

.podjazd td:last-child {
  display: table-cell;
}

.podjazd .kat1 {
  background-color: rgba(137, 198, 58, 1.0); 
}

.podjazd .kat2 {
  background-color: rgba(226, 203, 65, 1.0); 
}

.podjazd .kat3 {
  background-color: rgba(227, 145, 46, 1.0); 
}

.podjazd .kat4 {
  background-color: rgba(224, 37, 44, 1.0); 
}

@media screen and (max-width: 960px) {
  #obrazekTytulowy,
  #napisTytulowy  {
    display: none;
  }
}

</pre></body></html>