29.10
This commit is contained in:
68
Zadania/Z74 - ułamki i piętra/index.php
Normal file
68
Zadania/Z74 - ułamki i piętra/index.php
Normal file
@@ -0,0 +1,68 @@
|
||||
<!doctype html>
|
||||
<html lang="pl">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<title>Z74 - Ułamki i piętra</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>Zadanie Z74</h1>
|
||||
<h2>Autor: Jakub Grzegorczyk</h2>
|
||||
</header>
|
||||
<div class="box">
|
||||
<p>
|
||||
Napisz program, który dla danej liczby całkowitej N wyświetla ciąg liczb w postaci ułamka zwykłego i dziesiętnego, prezentując wynik w specyficzny sposób. Na przykład dla N=3 program powinien wyświetlić:
|
||||
<br>
|
||||
Piętro 1 > 1/1 - 1.000000 <br>
|
||||
Piętro 2 > > 1/2 - 0.500000 <br>
|
||||
Piętro 3 > > > 1/3 - 0.333333 <br>
|
||||
> > > > Koniec wspinaczki wracamy < < < < <br>
|
||||
Piętro 3 > > > <br>
|
||||
Piętro 2 > > <br>
|
||||
Piętro 1 > <br>
|
||||
Program powinien przyjmować N z formularza i weryfikować, czy jest to liczba całkowita dodatnia.
|
||||
</p>
|
||||
<b>Wskazówki dla ucznia:</b>
|
||||
<ul>
|
||||
<li>Sprawdź, czy N jest liczbą całkowitą dodatnią za pomocą is_numeric() i warunku N > 0.</li>
|
||||
<li>Użyj pętli for, aby wygenerować ułamki od 1/1 do 1/N.</li>
|
||||
<li>Oblicz ułamek dziesiętny za pomocą dzielenia (np. 1 / $i) i sformatuj go funkcją sprintf() do 6 miejsc po przecinku.</li>
|
||||
<li>Dodawaj znaki > zależnie od numeru piętra (np. w pętli zwiększaj ich liczbę), a potem odwracaj kolejność dla powrotu.</li>
|
||||
<li>Zabezpiecz dane wejściowe za pomocą htmlspecialchars(), aby uniknąć problemów z XSS.</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="box">
|
||||
<form action="index.php" method="post">
|
||||
<fieldset>
|
||||
<legend>Liczba pięter</legend>
|
||||
<label for="n">N:</label>
|
||||
<input type="number" name="n" id="n">
|
||||
</fieldset>
|
||||
<button type="submit">Wyślij</button>
|
||||
</form>
|
||||
</div>
|
||||
<?php
|
||||
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
||||
$n = htmlspecialchars($_POST['n']);
|
||||
echo '<div class="box">';
|
||||
if (is_numeric($n) && $n > 0) {
|
||||
for ($i = 1; $i <= $n; $i++) {
|
||||
$dzielenie = 1 / $i;
|
||||
$dzielenie = sprintf("%.6f", $dzielenie);
|
||||
echo "Piętro $i " . str_repeat('> ', $i) . " 1/$i - $dzielenie <br>";
|
||||
}
|
||||
echo '>>>> Koniec wspinaczki wracamy <<<< <br>';
|
||||
for ($i = $n; $i >= 1; $i--) {
|
||||
echo "Piętro $i " . str_repeat('> ', $i) . '<br>';
|
||||
}
|
||||
} else {
|
||||
echo "$n nie jest liczbą całkowitą lub nie jest większe od zera";
|
||||
}
|
||||
echo '</div>';
|
||||
}
|
||||
?>
|
||||
</body>
|
||||
</html>
|
||||
291
Zadania/Z74 - ułamki i piętra/style.css
Normal file
291
Zadania/Z74 - ułamki i piętra/style.css
Normal file
@@ -0,0 +1,291 @@
|
||||
/* === UNIVERSAL SCHOOL TEMPLATE CSS (BLACK & WHITE EDITION) === */
|
||||
/* clean, modern, and copy-paste friendly for all projects */
|
||||
|
||||
/* === RESET === */
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* === VARIABLES === */
|
||||
:root {
|
||||
--accent: #000;
|
||||
--border: #000;
|
||||
--bg: #fff;
|
||||
--bg-alt: #f7f7f7;
|
||||
--text: #111;
|
||||
--shadow: rgba(0, 0, 0, 0.15) 3px 3px 6px;
|
||||
--radius: 1em;
|
||||
--max-width: 1300px;
|
||||
}
|
||||
|
||||
/* === PAGE === */
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Verdana, sans-serif;
|
||||
background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
|
||||
color: var(--text);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
min-height: 100vh;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
/* === HEADER === */
|
||||
header {
|
||||
border: 2px solid var(--border);
|
||||
border-radius: var(--radius);
|
||||
padding: 20px 30px;
|
||||
box-shadow: var(--shadow);
|
||||
background: var(--bg);
|
||||
width: 95%;
|
||||
max-width: var(--max-width);
|
||||
text-align: center;
|
||||
margin-top: 25px;
|
||||
transition: box-shadow 0.3s ease, transform 0.2s ease;
|
||||
}
|
||||
|
||||
header:hover {
|
||||
box-shadow: rgba(0, 0, 0, 0.25) 4px 4px 10px;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
header h1 {
|
||||
font-size: 2.2rem;
|
||||
}
|
||||
|
||||
header h2 {
|
||||
margin-top: 0.5rem;
|
||||
font-weight: 400;
|
||||
font-size: 1.1rem;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
/* === BOX === */
|
||||
.box {
|
||||
border: 2px solid var(--border);
|
||||
border-radius: var(--radius);
|
||||
padding: 25px 35px;
|
||||
margin-top: 25px;
|
||||
background: var(--bg);
|
||||
box-shadow: var(--shadow);
|
||||
width: 95%;
|
||||
max-width: var(--max-width);
|
||||
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
||||
}
|
||||
|
||||
.box:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: rgba(0, 0, 0, 0.25) 4px 4px 10px;
|
||||
}
|
||||
|
||||
/* === TEXT ELEMENTS === */
|
||||
p {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4 {
|
||||
margin-bottom: 0.5rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #000;
|
||||
text-decoration: underline;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
/* === LISTS === */
|
||||
ul, ol {
|
||||
margin: 1rem 0 1rem 1.5rem;
|
||||
}
|
||||
|
||||
li {
|
||||
margin-bottom: 0.4rem;
|
||||
}
|
||||
|
||||
/* === TABLES === */
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin: 1rem 0;
|
||||
background: var(--bg);
|
||||
border: 2px solid var(--border);
|
||||
border-radius: 0.6em;
|
||||
overflow: hidden;
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
|
||||
th, td {
|
||||
padding: 10px 12px;
|
||||
border-bottom: 1px solid #ccc;
|
||||
}
|
||||
|
||||
th {
|
||||
background: var(--bg-alt);
|
||||
font-weight: bold;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
tr:hover {
|
||||
background: #f2f2f2;
|
||||
}
|
||||
|
||||
/* === FORMS === */
|
||||
form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1.2rem;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
border: 2px solid var(--border);
|
||||
border-radius: 0.8em;
|
||||
padding: 1.2rem 1.5rem;
|
||||
background: var(--bg-alt);
|
||||
}
|
||||
|
||||
legend {
|
||||
font-weight: bold;
|
||||
color: #000;
|
||||
padding: 0 0.4rem;
|
||||
font-size: 1.05rem;
|
||||
}
|
||||
|
||||
label {
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
input[type="text"],
|
||||
input[type="email"],
|
||||
input[type="password"],
|
||||
input[type="number"],
|
||||
input[type="tel"],
|
||||
textarea,
|
||||
select {
|
||||
width: 100%;
|
||||
font-size: 1rem;
|
||||
margin-top: 6px;
|
||||
margin-bottom: 8px;
|
||||
border: 2px solid var(--border);
|
||||
border-radius: 0.5em;
|
||||
padding: 0.4rem 0.5rem;
|
||||
transition: all 0.2s ease;
|
||||
background: var(--bg);
|
||||
}
|
||||
|
||||
textarea {
|
||||
resize: vertical;
|
||||
min-height: 100px;
|
||||
}
|
||||
|
||||
input:focus,
|
||||
textarea:focus,
|
||||
select:focus {
|
||||
outline: none;
|
||||
border-color: #000;
|
||||
box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
|
||||
background: #f9f9f9;
|
||||
}
|
||||
|
||||
input[type="radio"],
|
||||
input[type="checkbox"] {
|
||||
accent-color: #000;
|
||||
transform: scale(1.2);
|
||||
margin-right: 0.3rem;
|
||||
}
|
||||
|
||||
/* === BUTTONS === */
|
||||
button,
|
||||
input[type="submit"],
|
||||
input[type="button"],
|
||||
input[type="reset"] {
|
||||
padding: 10px 20px;
|
||||
border: 2px solid var(--border);
|
||||
border-radius: 0.5em;
|
||||
font-weight: bold;
|
||||
font-size: 1rem;
|
||||
background: linear-gradient(180deg, #fff 0%, #f2f2f2 100%);
|
||||
cursor: pointer;
|
||||
transition: all 0.2s ease;
|
||||
align-self: flex-start;
|
||||
}
|
||||
|
||||
button {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
button:hover,
|
||||
input[type="submit"]:hover,
|
||||
input[type="button"]:hover,
|
||||
input[type="reset"]:hover {
|
||||
background: #eaeaea;
|
||||
box-shadow: rgba(0, 0, 0, 0.25) 3px 3px 6px;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
button:active,
|
||||
input[type="submit"]:active,
|
||||
input[type="button"]:active,
|
||||
input[type="reset"]:active {
|
||||
transform: translateY(0);
|
||||
box-shadow: rgba(0, 0, 0, 0.15) 1px 1px 3px;
|
||||
background: #f7f7f7;
|
||||
}
|
||||
|
||||
/* === HR, CODE, ETC. === */
|
||||
hr {
|
||||
border: 0;
|
||||
border-top: 2px solid var(--border);
|
||||
margin: 1.5rem 0;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
code, pre {
|
||||
background: #f4f4f4;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 0.4em;
|
||||
padding: 0.3em 0.5em;
|
||||
font-family: "Courier New", monospace;
|
||||
}
|
||||
|
||||
pre {
|
||||
padding: 1em;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
/* === RESPONSIVE === */
|
||||
@media (max-width: 900px) {
|
||||
header, .box {
|
||||
width: 95%;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
button {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
textarea {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
header h1 {
|
||||
font-size: 1.7rem;
|
||||
}
|
||||
|
||||
header h2 {
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
}
|
||||
BIN
Zadania/Z75 - liczby fibonacciego iter/075.png
Normal file
BIN
Zadania/Z75 - liczby fibonacciego iter/075.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.1 KiB |
53
Zadania/Z75 - liczby fibonacciego iter/index.php
Normal file
53
Zadania/Z75 - liczby fibonacciego iter/index.php
Normal file
@@ -0,0 +1,53 @@
|
||||
<?php
|
||||
?>
|
||||
<!doctype html>
|
||||
<html lang="pl">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<title>Z75a - Liczby Fibonacciego iteracyjnie</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>Zadanie Z75a</h1>
|
||||
<h2>Autor: Jakub Grzegorczyk</h2>
|
||||
</header>
|
||||
<div class="box">
|
||||
<p>Napisz program, który dla danej liczby całkowitej n wypisuje wyrazy ciągu Fibonacciego według zależności</p>
|
||||
<img src="075.png" alt="Zależność Fibonacciego">
|
||||
<p>Dla n=20 program powinien wypisać: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, 2584, 4181, 6765</p>
|
||||
</div>
|
||||
<div class="box">
|
||||
<form action="index.php" method="post">
|
||||
<label for="n">Podaj Liczbę N:</label>
|
||||
<input type="number" name="n" id="n">
|
||||
<button type="submit">Wyślij</button>
|
||||
</form>
|
||||
</div>
|
||||
<?php
|
||||
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
||||
$n = htmlspecialchars($_POST['n']);
|
||||
echo '<div class="box">';
|
||||
if ($n == 0) {
|
||||
echo 'F(0) = 0';
|
||||
} else if ($n == 1) {
|
||||
echo 'F(1) = 1';
|
||||
} else {
|
||||
$a = 0;
|
||||
$b = 1;
|
||||
$out = 0;
|
||||
|
||||
for ($i = 0; $i <= $n; $i++) {
|
||||
$out = $a;
|
||||
[$a, $b] = [$b, $a + $b];
|
||||
echo 'F(' . $i . ') = ' . $out . '<br>';
|
||||
}
|
||||
}
|
||||
echo '</div>';
|
||||
}
|
||||
?>
|
||||
</body>
|
||||
</html>
|
||||
291
Zadania/Z75 - liczby fibonacciego iter/style.css
Normal file
291
Zadania/Z75 - liczby fibonacciego iter/style.css
Normal file
@@ -0,0 +1,291 @@
|
||||
/* === UNIVERSAL SCHOOL TEMPLATE CSS (BLACK & WHITE EDITION) === */
|
||||
/* clean, modern, and copy-paste friendly for all projects */
|
||||
|
||||
/* === RESET === */
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* === VARIABLES === */
|
||||
:root {
|
||||
--accent: #000;
|
||||
--border: #000;
|
||||
--bg: #fff;
|
||||
--bg-alt: #f7f7f7;
|
||||
--text: #111;
|
||||
--shadow: rgba(0, 0, 0, 0.15) 3px 3px 6px;
|
||||
--radius: 1em;
|
||||
--max-width: 1300px;
|
||||
}
|
||||
|
||||
/* === PAGE === */
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Verdana, sans-serif;
|
||||
background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
|
||||
color: var(--text);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
min-height: 100vh;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
/* === HEADER === */
|
||||
header {
|
||||
border: 2px solid var(--border);
|
||||
border-radius: var(--radius);
|
||||
padding: 20px 30px;
|
||||
box-shadow: var(--shadow);
|
||||
background: var(--bg);
|
||||
width: 95%;
|
||||
max-width: var(--max-width);
|
||||
text-align: center;
|
||||
margin-top: 25px;
|
||||
transition: box-shadow 0.3s ease, transform 0.2s ease;
|
||||
}
|
||||
|
||||
header:hover {
|
||||
box-shadow: rgba(0, 0, 0, 0.25) 4px 4px 10px;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
header h1 {
|
||||
font-size: 2.2rem;
|
||||
}
|
||||
|
||||
header h2 {
|
||||
margin-top: 0.5rem;
|
||||
font-weight: 400;
|
||||
font-size: 1.1rem;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
/* === BOX === */
|
||||
.box {
|
||||
border: 2px solid var(--border);
|
||||
border-radius: var(--radius);
|
||||
padding: 25px 35px;
|
||||
margin-top: 25px;
|
||||
background: var(--bg);
|
||||
box-shadow: var(--shadow);
|
||||
width: 95%;
|
||||
max-width: var(--max-width);
|
||||
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
||||
}
|
||||
|
||||
.box:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: rgba(0, 0, 0, 0.25) 4px 4px 10px;
|
||||
}
|
||||
|
||||
/* === TEXT ELEMENTS === */
|
||||
p {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4 {
|
||||
margin-bottom: 0.5rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #000;
|
||||
text-decoration: underline;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
/* === LISTS === */
|
||||
ul, ol {
|
||||
margin: 1rem 0 1rem 1.5rem;
|
||||
}
|
||||
|
||||
li {
|
||||
margin-bottom: 0.4rem;
|
||||
}
|
||||
|
||||
/* === TABLES === */
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin: 1rem 0;
|
||||
background: var(--bg);
|
||||
border: 2px solid var(--border);
|
||||
border-radius: 0.6em;
|
||||
overflow: hidden;
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
|
||||
th, td {
|
||||
padding: 10px 12px;
|
||||
border-bottom: 1px solid #ccc;
|
||||
}
|
||||
|
||||
th {
|
||||
background: var(--bg-alt);
|
||||
font-weight: bold;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
tr:hover {
|
||||
background: #f2f2f2;
|
||||
}
|
||||
|
||||
/* === FORMS === */
|
||||
form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1.2rem;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
border: 2px solid var(--border);
|
||||
border-radius: 0.8em;
|
||||
padding: 1.2rem 1.5rem;
|
||||
background: var(--bg-alt);
|
||||
}
|
||||
|
||||
legend {
|
||||
font-weight: bold;
|
||||
color: #000;
|
||||
padding: 0 0.4rem;
|
||||
font-size: 1.05rem;
|
||||
}
|
||||
|
||||
label {
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
input[type="text"],
|
||||
input[type="email"],
|
||||
input[type="password"],
|
||||
input[type="number"],
|
||||
input[type="tel"],
|
||||
textarea,
|
||||
select {
|
||||
width: 100%;
|
||||
font-size: 1rem;
|
||||
margin-top: 6px;
|
||||
margin-bottom: 8px;
|
||||
border: 2px solid var(--border);
|
||||
border-radius: 0.5em;
|
||||
padding: 0.4rem 0.5rem;
|
||||
transition: all 0.2s ease;
|
||||
background: var(--bg);
|
||||
}
|
||||
|
||||
textarea {
|
||||
resize: vertical;
|
||||
min-height: 100px;
|
||||
}
|
||||
|
||||
input:focus,
|
||||
textarea:focus,
|
||||
select:focus {
|
||||
outline: none;
|
||||
border-color: #000;
|
||||
box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
|
||||
background: #f9f9f9;
|
||||
}
|
||||
|
||||
input[type="radio"],
|
||||
input[type="checkbox"] {
|
||||
accent-color: #000;
|
||||
transform: scale(1.2);
|
||||
margin-right: 0.3rem;
|
||||
}
|
||||
|
||||
/* === BUTTONS === */
|
||||
button,
|
||||
input[type="submit"],
|
||||
input[type="button"],
|
||||
input[type="reset"] {
|
||||
padding: 10px 20px;
|
||||
border: 2px solid var(--border);
|
||||
border-radius: 0.5em;
|
||||
font-weight: bold;
|
||||
font-size: 1rem;
|
||||
background: linear-gradient(180deg, #fff 0%, #f2f2f2 100%);
|
||||
cursor: pointer;
|
||||
transition: all 0.2s ease;
|
||||
align-self: flex-start;
|
||||
}
|
||||
|
||||
button {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
button:hover,
|
||||
input[type="submit"]:hover,
|
||||
input[type="button"]:hover,
|
||||
input[type="reset"]:hover {
|
||||
background: #eaeaea;
|
||||
box-shadow: rgba(0, 0, 0, 0.25) 3px 3px 6px;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
button:active,
|
||||
input[type="submit"]:active,
|
||||
input[type="button"]:active,
|
||||
input[type="reset"]:active {
|
||||
transform: translateY(0);
|
||||
box-shadow: rgba(0, 0, 0, 0.15) 1px 1px 3px;
|
||||
background: #f7f7f7;
|
||||
}
|
||||
|
||||
/* === HR, CODE, ETC. === */
|
||||
hr {
|
||||
border: 0;
|
||||
border-top: 2px solid var(--border);
|
||||
margin: 1.5rem 0;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
code, pre {
|
||||
background: #f4f4f4;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 0.4em;
|
||||
padding: 0.3em 0.5em;
|
||||
font-family: "Courier New", monospace;
|
||||
}
|
||||
|
||||
pre {
|
||||
padding: 1em;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
/* === RESPONSIVE === */
|
||||
@media (max-width: 900px) {
|
||||
header, .box {
|
||||
width: 95%;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
button {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
textarea {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
header h1 {
|
||||
font-size: 1.7rem;
|
||||
}
|
||||
|
||||
header h2 {
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
}
|
||||
@@ -18,10 +18,10 @@
|
||||
</div>
|
||||
<div class="box">
|
||||
<form action="index.php" method="post">
|
||||
<label for="a">Wprowadź liczbę A: </label><br>
|
||||
<input type="number" name="a" id="a"><br>
|
||||
<label for="b">Wprowadź liczbę B:</label><br>
|
||||
<input type="number" name="b" id="b"><br><br>
|
||||
<label for="a">Wprowadź liczbę A: </label>
|
||||
<input type="number" name="a" id="a">
|
||||
<label for="b">Wprowadź liczbę B:</label>
|
||||
<input type="number" name="b" id="b">
|
||||
<button type="submit">Wyślij</button>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
@@ -1,50 +1,291 @@
|
||||
/* === UNIVERSAL SCHOOL TEMPLATE CSS (BLACK & WHITE EDITION) === */
|
||||
/* clean, modern, and copy-paste friendly for all projects */
|
||||
|
||||
/* === RESET === */
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
body {
|
||||
font-family: Verdana, serif;
|
||||
background: #ffffff;
|
||||
margin: 30px;
|
||||
}
|
||||
header {
|
||||
border: 2px solid black;
|
||||
border-radius: 1em;
|
||||
padding: 20px;
|
||||
box-shadow: rgba(0, 0, 0, 0.2) 3px 3px 5px;
|
||||
background: #f0f0f0;
|
||||
}
|
||||
div {
|
||||
|
||||
/* === VARIABLES === */
|
||||
:root {
|
||||
--accent: #000;
|
||||
--border: #000;
|
||||
--bg: #fff;
|
||||
--bg-alt: #f7f7f7;
|
||||
--text: #111;
|
||||
--shadow: rgba(0, 0, 0, 0.15) 3px 3px 6px;
|
||||
--radius: 1em;
|
||||
--max-width: 1300px;
|
||||
}
|
||||
input {
|
||||
margin-top: 10px;
|
||||
width: 30%;
|
||||
border: black 2px solid;
|
||||
|
||||
/* === PAGE === */
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Verdana, sans-serif;
|
||||
background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
|
||||
color: var(--text);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
min-height: 100vh;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
/* === HEADER === */
|
||||
header {
|
||||
border: 2px solid var(--border);
|
||||
border-radius: var(--radius);
|
||||
padding: 20px 30px;
|
||||
box-shadow: var(--shadow);
|
||||
background: var(--bg);
|
||||
width: 95%;
|
||||
max-width: var(--max-width);
|
||||
text-align: center;
|
||||
margin-top: 25px;
|
||||
transition: box-shadow 0.3s ease, transform 0.2s ease;
|
||||
}
|
||||
|
||||
header:hover {
|
||||
box-shadow: rgba(0, 0, 0, 0.25) 4px 4px 10px;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
header h1 {
|
||||
font-size: 2.2rem;
|
||||
}
|
||||
|
||||
header h2 {
|
||||
margin-top: 0.5rem;
|
||||
font-weight: 400;
|
||||
font-size: 1.1rem;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
/* === BOX === */
|
||||
.box {
|
||||
border: 2px solid var(--border);
|
||||
border-radius: var(--radius);
|
||||
padding: 25px 35px;
|
||||
margin-top: 25px;
|
||||
background: var(--bg);
|
||||
box-shadow: var(--shadow);
|
||||
width: 95%;
|
||||
max-width: var(--max-width);
|
||||
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
||||
}
|
||||
|
||||
.box:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: rgba(0, 0, 0, 0.25) 4px 4px 10px;
|
||||
}
|
||||
|
||||
/* === TEXT ELEMENTS === */
|
||||
p {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4 {
|
||||
margin-bottom: 0.5rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #000;
|
||||
text-decoration: underline;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
/* === LISTS === */
|
||||
ul, ol {
|
||||
margin: 1rem 0 1rem 1.5rem;
|
||||
}
|
||||
|
||||
li {
|
||||
margin-bottom: 0.4rem;
|
||||
}
|
||||
|
||||
/* === TABLES === */
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin: 1rem 0;
|
||||
background: var(--bg);
|
||||
border: 2px solid var(--border);
|
||||
border-radius: 0.6em;
|
||||
overflow: hidden;
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
|
||||
th, td {
|
||||
padding: 10px 12px;
|
||||
border-bottom: 1px solid #ccc;
|
||||
}
|
||||
|
||||
th {
|
||||
background: var(--bg-alt);
|
||||
font-weight: bold;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
tr:hover {
|
||||
background: #f2f2f2;
|
||||
}
|
||||
|
||||
/* === FORMS === */
|
||||
form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1.2rem;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
border: 2px solid var(--border);
|
||||
border-radius: 0.8em;
|
||||
padding: 1.2rem 1.5rem;
|
||||
background: var(--bg-alt);
|
||||
}
|
||||
|
||||
legend {
|
||||
font-weight: bold;
|
||||
color: #000;
|
||||
padding: 0 0.4rem;
|
||||
font-size: 1.05rem;
|
||||
}
|
||||
|
||||
label {
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
input[type="text"],
|
||||
input[type="email"],
|
||||
input[type="password"],
|
||||
input[type="number"],
|
||||
input[type="tel"],
|
||||
textarea,
|
||||
select {
|
||||
width: 100%;
|
||||
font-size: 1rem;
|
||||
margin-top: 6px;
|
||||
margin-bottom: 8px;
|
||||
border: 2px solid var(--border);
|
||||
border-radius: 0.5em;
|
||||
height: 2em;
|
||||
padding: 0.4rem 0.5rem;
|
||||
transition: all 0.2s ease;
|
||||
background: var(--bg);
|
||||
}
|
||||
|
||||
textarea {
|
||||
resize: vertical;
|
||||
min-height: 100px;
|
||||
}
|
||||
|
||||
input:focus,
|
||||
textarea:focus,
|
||||
select:focus {
|
||||
outline: none;
|
||||
border-color: #000;
|
||||
box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
|
||||
background: #f9f9f9;
|
||||
}
|
||||
|
||||
input[type="radio"],
|
||||
input[type="checkbox"] {
|
||||
accent-color: #000;
|
||||
transform: scale(1.2);
|
||||
margin-right: 0.3rem;
|
||||
}
|
||||
|
||||
/* === BUTTONS === */
|
||||
button,
|
||||
input[type="submit"],
|
||||
input[type="button"],
|
||||
input[type="reset"] {
|
||||
padding: 10px 20px;
|
||||
border: 2px solid var(--border);
|
||||
border-radius: 0.5em;
|
||||
font-weight: bold;
|
||||
font-size: 1rem;
|
||||
background: linear-gradient(180deg, #fff 0%, #f2f2f2 100%);
|
||||
cursor: pointer;
|
||||
transition: all 0.2s ease;
|
||||
align-self: flex-start;
|
||||
}
|
||||
|
||||
button {
|
||||
padding: 5px;
|
||||
width: 30%;
|
||||
border: black 2px solid;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
button:hover,
|
||||
input[type="submit"]:hover,
|
||||
input[type="button"]:hover,
|
||||
input[type="reset"]:hover {
|
||||
background: #eaeaea;
|
||||
box-shadow: rgba(0, 0, 0, 0.25) 3px 3px 6px;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
button:active,
|
||||
input[type="submit"]:active,
|
||||
input[type="button"]:active,
|
||||
input[type="reset"]:active {
|
||||
transform: translateY(0);
|
||||
box-shadow: rgba(0, 0, 0, 0.15) 1px 1px 3px;
|
||||
background: #f7f7f7;
|
||||
}
|
||||
|
||||
/* === HR, CODE, ETC. === */
|
||||
hr {
|
||||
border: 0;
|
||||
border-top: 2px solid var(--border);
|
||||
margin: 1.5rem 0;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
border-radius: 0.5em;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
code, pre {
|
||||
background: #f4f4f4;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 0.4em;
|
||||
padding: 0.3em 0.5em;
|
||||
font-family: "Courier New", monospace;
|
||||
}
|
||||
|
||||
pre {
|
||||
font-family: Verdana, serif;
|
||||
padding: 1em;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.box {
|
||||
border: 2px solid black;
|
||||
/* === RESPONSIVE === */
|
||||
@media (max-width: 900px) {
|
||||
header, .box {
|
||||
width: 95%;
|
||||
padding: 20px;
|
||||
border-radius: 1em;
|
||||
margin: 10px 0 10px 0;
|
||||
box-shadow: rgba(0, 0, 0, 0.2) 3px 3px 5px;
|
||||
}
|
||||
|
||||
button {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
textarea {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.box h3 {
|
||||
cursor: pointer;
|
||||
@media (max-width: 600px) {
|
||||
header h1 {
|
||||
font-size: 1.7rem;
|
||||
}
|
||||
|
||||
header h2 {
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user