Utworzenie repozytorium i pierwszy commit

This commit is contained in:
theKapcioszek 2022-11-28 13:23:16 +01:00
commit cacba4c64c
21 changed files with 1306 additions and 0 deletions

BIN
img/bootlegprincess.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 922 KiB

BIN
img/channels4_profile.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

BIN
img/channels4_profile_1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

BIN
img/channels4_profile_2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

BIN
img/channels4_profile_3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

BIN
img/meadow.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 334 KiB

BIN
img/sky.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 KiB

BIN
img/space.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 449 KiB

BIN
img/trees.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 113 KiB

BIN
img/undefined.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 KiB

BIN
img/voguesociety.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

117
kod/about.php Normal file
View File

@ -0,0 +1,117 @@
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=Montserrat&family=Oregano&display=swap"
rel="stylesheet">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style/style-main.css">
<title>Kapcioszek - O mnie</title>
<link rel="icon" type="image/x-icon" href="../img/channels4_profile.ico">
</head>
<body>
<div class="menu">
<div id="branding">
<img src="../img/channels4_profile.ico" alt="logo">
<a href="index.php">
<p>Kapcioszek</p>
</a>
</div>
<?php
$link = new mysqli("localhost", "root", "");
if ($link->connect_error) {
die("Connection failed: " . $link->connect_error);
}
mysqli_select_db($link, 'strona_praktyka')
or die("Could not select database");
$result = mysqli_query($link, "SELECT name, link FROM menu;");
while ($row = mysqli_fetch_array($result)) {
?>
<a href="<?= $row['link']; ?>">
<?= $row['name']; ?>
</a>
<?php
}
mysqli_close($link);
?>
</div>
<div class="body">
<div>
<h2>O mnie</h2>
</div>
<div>
<p>
Hej! Jestem Kapcioszek. Moim hobby jest produkcja muzyki. Myślę, że z każdym albumem idzie mi
coraz lepiej ale to już tobie, drogi słuchaczu oceniać. Jednym z moich marzeń jest możliwość robienia w
przyszłości piosenek z tekstem (na razie tworzę tylko utwory z samą muzyką).
Oprócz tworzenia muzyki lubie również informstykę, gry wideo oraz "siedzę" trochę w grach RPG.
W każdym razie życzę dobrego dnia i pamiętaj o tym żeby się nawadniać oraz dobrze się wyspać. :3
</p>
</div>
<div>
<a href="https://www.youtube.com/channel/UCET1UxPbAb7M7CqZXo5D79w"><img
src="https://cdn-icons-png.flaticon.com/512/1384/1384060.png" height="75px" width="75px"></a>
<a href="https://open.spotify.com/artist/0mvaqOMQmfzd3e5z8qcSjg"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Spotify_icon.svg/512px-Spotify_icon.svg.png?20220821125323"
height="75px" width="75px"></a>
</div>
<div>
<h3>Kontakt:</h3>
<div>
<p><b>Email: </b>kapcioszek@onet.pl</p>
</div>
</div>
</div>
<div class="footer">
<div><a href="index.php"><b>Kapcioszek</b></a></div>
<?php
$link = new mysqli("localhost", "root", "");
if ($link->connect_error) {
die("Connection failed: " . $link->connect_error);
}
mysqli_select_db($link, 'strona_praktyka')
or die("Could not select database");
$result = mysqli_query($link, "SELECT name, link FROM footer;");
while ($row = mysqli_fetch_array($result)) {
?>
<div><a href="<?= $row['link']; ?>.php">
<?= $row['name']; ?>
</a>
</div>
<?php
}
mysqli_close($link);
?>
</div>
</body>
</html>

View File

@ -0,0 +1,122 @@
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=Montserrat&family=Oregano&display=swap"
rel="stylesheet">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style/style2.css">
<title>Kapcioszek - Bootleg Princess</title>
<link rel="icon" type="image/x-icon" href="../img/channels4_profile_2.png">
</head>
<body>
<div class="menu">
<div id="branding">
<img src="../img/channels4_profile_2.png" alt="logo">
<a href="index.php"><p>Kapcioszek</p></a>
</div>
<?php
$link = new mysqli("localhost", "root", "");
if ($link->connect_error) {
die("Connection failed: " . $link->connect_error);
}
mysqli_select_db($link, 'strona_praktyka')
or die("Could not select database");
$result = mysqli_query($link, "SELECT name, link FROM menu;");
while ($row = mysqli_fetch_array($result)) {
?>
<a href="<?= $row['link']; ?>.php">
<?= $row['name']; ?>
</a>
<?php
}
mysqli_close($link);
?>
</div>
<div class="body">
<div>
<h2>Bootleg Princess</h2>
</div>
<div>
<table>
<?php
$link = new mysqli("localhost", "root", "");
if ($link->connect_error) {
die("Connection failed " . $link->connect_error);
}
mysqli_select_db($link, 'strona_praktyka')
or die("Could not select database");
$result = mysqli_query($link, "SELECT name, link FROM utwor WHERE album = 2;");
while ($row = mysqli_fetch_array($result)) {
?>
<tr>
<td>
<?= $row['name']; ?>
</td>
<td>
<iframe width="360" height="215" src="<?= $row['link']; ?>" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</td>
</tr>
<?php
}
mysqli_close($link);
?>
</table>
</div>
</div>
<div class="footer">
<div><a href="index.php"><b>Kapcioszek</b></a></div>
<?php
$link = new mysqli("localhost", "root", "");
if ($link->connect_error) {
die("Connection failed: " . $link->connect_error);
}
mysqli_select_db($link, 'strona_praktyka')
or die("Could not select database");
$result = mysqli_query($link, "SELECT name, link FROM footer;");
while ($row = mysqli_fetch_array($result)) {
?>
<div><a href="<?= $row['link']; ?>">
<?= $row['name']; ?>
</a>
</div>
<?php
}
mysqli_close($link);
?>
</div>
</body>
</html>

122
kod/album_undefined.php Normal file
View File

@ -0,0 +1,122 @@
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=Montserrat&family=Oregano&display=swap"
rel="stylesheet">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style/style1.css">
<title>Kapcioszek - Undefined</title>
<link rel="icon" type="image/x-icon" href="../img/channels4_profile_1.png">
</head>
<body>
<div class="menu">
<div id="branding">
<img src="../img/channels4_profile_1.png" alt="logo">
<a href="index.php"><p>Kapcioszek</p></a>
</div>
<?php
$link = new mysqli("localhost", "root", "");
if ($link->connect_error) {
die("Connection failed: " . $link->connect_error);
}
mysqli_select_db($link, 'strona_praktyka')
or die("Could not select database");
$result = mysqli_query($link, "SELECT name, link FROM menu;");
while ($row = mysqli_fetch_array($result)) {
?>
<a href="<?= $row['link']; ?>.php">
<?= $row['name']; ?>
</a>
<?php
}
mysqli_close($link);
?>
</div>
<div class="body">
<div>
<h2>Undefined</h2>
</div>
<div>
<table>
<?php
$link = new mysqli("localhost", "root", "");
if ($link->connect_error) {
die("Connection failed " . $link->connect_error);
}
mysqli_select_db($link, 'strona_praktyka')
or die("Could not select database");
$result = mysqli_query($link, "SELECT name, link FROM utwor WHERE album = 1;");
while ($row = mysqli_fetch_array($result)) {
?>
<tr>
<td>
<?= $row['name']; ?>
</td>
<td>
<iframe width="360" height="215" src="<?= $row['link']; ?>" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</td>
</tr>
<?php
}
mysqli_close($link);
?>
</table>
</div>
</div>
<div class="footer">
<div><a href="index.php"><b>Kapcioszek</b></a></div>
<?php
$link = new mysqli("localhost", "root", "");
if ($link->connect_error) {
die("Connection failed: " . $link->connect_error);
}
mysqli_select_db($link, 'strona_praktyka')
or die("Could not select database");
$result = mysqli_query($link, "SELECT name, link FROM footer;");
while ($row = mysqli_fetch_array($result)) {
?>
<div><a href="<?= $row['link']; ?>">
<?= $row['name']; ?>
</a>
</div>
<?php
}
mysqli_close($link);
?>
</div>
</body>
</html>

122
kod/album_vogue_society.php Normal file
View File

@ -0,0 +1,122 @@
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=Montserrat&family=Oregano&display=swap"
rel="stylesheet">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style/style3.css">
<title>Kapcioszek - Vogue Society</title>
<link rel="icon" type="image/x-icon" href="../img/channels4_profile_3.png">
</head>
<body>
<div class="menu">
<div id="branding">
<img src="../img/channels4_profile_3.png" alt="logo">
<a href="index.php"><p>Kapcioszek</p></a>
</div>
<?php
$link = new mysqli("localhost", "root", "");
if ($link->connect_error) {
die("Connection failed: " . $link->connect_error);
}
mysqli_select_db($link, 'strona_praktyka')
or die("Could not select database");
$result = mysqli_query($link, "SELECT name, link FROM menu;");
while ($row = mysqli_fetch_array($result)) {
?>
<a href="<?= $row['link']; ?>.php">
<?= $row['name']; ?>
</a>
<?php
}
mysqli_close($link);
?>
</div>
<div class="body">
<div>
<h2>Vogue Society</h2>
</div>
<div>
<table>
<?php
$link = new mysqli("localhost", "root", "");
if ($link->connect_error) {
die("Connection failed " . $link->connect_error);
}
mysqli_select_db($link, 'strona_praktyka')
or die("Could not select database");
$result = mysqli_query($link, "SELECT name, link FROM utwor WHERE album = 3;");
while ($row = mysqli_fetch_array($result)) {
?>
<tr>
<td>
<?= $row['name']; ?>
</td>
<td>
<iframe width="360" height="215" src="<?= $row['link']; ?>" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</td>
</tr>
<?php
}
mysqli_close($link);
?>
</table>
</div>
</div>
<div class="footer">
<div><a href="index.php"><b>Kapcioszek</b></a></div>
<?php
$link = new mysqli("localhost", "root", "");
if ($link->connect_error) {
die("Connection failed: " . $link->connect_error);
}
mysqli_select_db($link, 'strona_praktyka')
or die("Could not select database");
$result = mysqli_query($link, "SELECT name, link FROM footer;");
while ($row = mysqli_fetch_array($result)) {
?>
<div><a href="<?= $row['link']; ?>">
<?= $row['name']; ?>
</a>
</div>
<?php
}
mysqli_close($link);
?>
</div>
</body>
</html>

126
kod/albumy.php Normal file
View File

@ -0,0 +1,126 @@
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=Montserrat&family=Oregano&display=swap"
rel="stylesheet">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style/style-main.css">
<title>Kapcioszek - Albumy</title>
<link rel="icon" type="image/x-icon" href="../img/channels4_profile.ico">
</head>
<body>
<div class="menu">
<div id="branding">
<img src="../img/channels4_profile.ico" alt="logo">
<a href="index.php">
<p>Kapcioszek</p>
</a>
</div>
<?php
$link = new mysqli("localhost", "root", "");
if ($link->connect_error) {
die("Connection failed: " . $link->connect_error);
}
mysqli_select_db($link, 'strona_praktyka')
or die("Could not select database");
$result = mysqli_query($link, "SELECT name, link FROM menu;");
while ($row = mysqli_fetch_array($result)) {
?>
<a href="<?= $row['link']; ?>">
<?= $row['name']; ?>
</a>
<?php
}
mysqli_close($link);
?>
</div>
<div class="body">
<div>
<h2>Albumy</h2>
</div>
<table>
<?php
$link = new mysqli("localhost", "root", "");
if ($link->connect_error) {
die("Connection failed: " . $link->connect_error);
}
mysqli_select_db($link, 'strona_praktyka')
or die("Could not connect to database");
$result = mysqli_query($link, "SELECT cover_art, name, year_of_release, link FROM album;");
while ($row = mysqli_fetch_array($result)) {
?>
<tr>
<td><img src="<?= $row['cover_art']; ?>" width=200px height=200px></td>
<td>
<a href="<?= $row['link']; ?>.php">
<?= $row['name']; ?>
</a>
</td>
<td>
<?= $row['year_of_release']; ?>
</td>
</tr>
<?php
}
mysqli_close($link);
?>
</table>
</div>
<div class="footer">
<div><a href="index.php"><b>Kapcioszek</b></a></div>
<?php
$link = new mysqli("localhost", "root", "");
if ($link->connect_error) {
die("Connection failed: " . $link->connect_error);
}
mysqli_select_db($link, 'strona_praktyka')
or die("Could not select database");
$result = mysqli_query($link, "SELECT name, link FROM footer;");
while ($row = mysqli_fetch_array($result)) {
?>
<div><a href="<?= $row['link']; ?>.php">
<?= $row['name']; ?>
</a>
</div>
<?php
}
mysqli_close($link);
?>
</div>
</body>
</html>

159
kod/index.php Normal file
View File

@ -0,0 +1,159 @@
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=Montserrat&family=Oregano&display=swap"
rel="stylesheet">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style/style-main.css">
<title>Kapcioszek - Strona Główna</title>
<link rel="icon" type="image/x-icon" href="../img/channels4_profile.ico">
</head>
<body>
<div class="menu">
<div id="branding">
<img src="../img/channels4_profile.ico" alt="logo">
<a href="index.php">
<p>Kapcioszek</p>
</a>
</div>
<?php
$link = new mysqli("localhost", "root", "");
if ($link->connect_error) {
die("Connection failed: " . $link->connect_error);
}
mysqli_select_db($link, 'strona_praktyka')
or die("Could not select database");
$result = mysqli_query($link, "SELECT name, link FROM menu;");
while ($row = mysqli_fetch_array($result)) {
?>
<a href="<?= $row['link']; ?>.php">
<?= $row['name']; ?>
</a>
<?php
}
mysqli_close($link);
?>
</div>
<div class="body-mp">
<div>
<h2>Strona Główna</h2>
</div>
<div>
<p>
Hej! Jestem Kapcioszek. Moim hobby produkcja muzyki. Myślę, że z każdym albumem idzie
mi coraz lepiej ale to już tobie, drogi słuchaczu oceniać. Jednym z moich marzeń jest możliwość robienia
w przyszłości piosenek z tekstem (na razie tworzę tylko utwory z samą muzyką).
</p>
<p>
Dotychczas mam wydane dwa albumy plus trzeci prawie skończony (niestety przez problemy z komputerem oraz
sprawy prywatne prace się mocno opóźniły), który mam nadzieję wydać jeszcze w tym roku. Oprócz tego mam
na swoim kanale na youtube jeszcze kilka utowrów nie należących do żadnego albumu albo, które miały być
albumami a ostatecznie
wyszło z tego tylko kilka utworów.
</p>
</div>
<div>
<p>
Losowe polecenie utworu:
</p>
<table>
<?php
$tab = array();
$link = new mysqli("localhost", "root", "");
if ($link->connect_error) {
die("Connection failed: " . $link->connect_error);
}
mysqli_select_db($link, 'strona_praktyka')
or die("Could not select database");
$result = mysqli_query($link, "SELECT ID FROM utwor;");
while ($row = mysqli_fetch_array($result)) {
array_push($tab,$row['ID']);
}
$losowanie_utworu = rand(1, count($tab));
$result = mysqli_query($link, "SELECT utwor.name, utwor.link, album.name AS aname FROM utwor JOIN album on utwor.album = album.ID WHERE utwor.ID = $losowanie_utworu;");
while ($row = mysqli_fetch_array($result)) {
?>
<tr>
<td>
<?= $row['name']; ?>
</td>
<td>
<?= $row['aname']; ?>
</td>
<td>
<iframe width="360" height="215" src="<?= $row['link']; ?>" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</td>
</tr>
<?php
}
mysqli_close($link);
?>
</table>
</div>
</div>
<div class="footer">
<div><a href="index.php"><b>Kapcioszek</b></a></div>
<?php
$link = new mysqli("localhost", "root", "");
if ($link->connect_error) {
die("Connection failed: " . $link->connect_error);
}
mysqli_select_db($link, 'strona_praktyka')
or die("Could not select database");
$result = mysqli_query($link, "SELECT name, link FROM footer;");
while ($row = mysqli_fetch_array($result)) {
?>
<div><a href="<?= $row['link']; ?>">
<?= $row['name']; ?>
</a>
</div>
<?php
}
mysqli_close($link);
?>
</div>
</body>
</html>

144
kod/style/style-main.css Normal file
View File

@ -0,0 +1,144 @@
body {
color: #fcc49c;
background-image: url("../../img/sky.jpg");
background-size: cover;
margin: 0px;
}
a {
color: #fcc49c;
text-decoration: none;
}
h1 {
font-family: 'IBM Plex Mono', monospace;
font-size: 60px;
}
h2 {
font-family: 'IBM Plex Mono', monospace;
margin-bottom: 5%;
font-size: 40px;
}
h3 {
font-family: 'IBM Plex Mono', monospace;
font-size: 30px;
}
td {
border: 5px solid white;
font-family: 'Montserrat', sans-serif;
font-weight: bold;
font-size: 25px;
}
tr:hover {
background-color: #ff9466;
text-decoration: #5b1d15;
}
p {
font-family: 'IBM Plex Mono', monospace;
font-size: 18px;
margin-left: 10%;
margin-right: 10%;
margin-bottom: 5%;
}
.menu {
text-align: center;
display: flex;
justify-content: center;
font-family: 'Montserrat', sans-serif;
font-size: 20px;
background-color: #ff9466;
}
.menu a {
margin: 1%;
background-color: #5b1d15;
border-radius: 5%;
padding: 0.5%;
color: #ff9466;
}
.menu a:hover {
background-color: #ff9466;
color: #5b1d15;
}
.menu #branding {
position: absolute;
display: flex;
top: 1%;
left: 1%;
margin: 0px;
background: none;
}
.menu #branding a {
background: none;
}
.menu #branding img {
width: 60px;
height: 60px;
}
.menu #branding p {
font-size: 30px;
color: #5b1d15;
margin-left: 10%;
margin-top: 9%;
font-family: 'Oregano', cursive;
}
.body {
text-align: center;
display: flex;
flex-direction: column;
margin-left: 20%;
margin-right: 20%;
padding-left: 5%;
padding-right: 5%;
padding-top: 4%;
padding-bottom: 4%;
background-color: #5b1d15;
}
.body-mp {
text-align: center;
align-items: center;
display: flex;
flex-direction: column;
margin-left: 20%;
margin-right: 20%;
padding-left: 5%;
padding-right: 5%;
padding-top: 4%;
padding-bottom: 4%;
background-color: #5b1d15;
}
.body img {
margin-left: 5%;
margin-right: 5%;
}
.footer {
font-family: 'IBM Plex Mono', monospace;
font-size: 16px;
display: flex;
flex-wrap: wrap;
flex-direction: column;
align-items: flex-end;
border-top: 1px #c87b5a solid;
padding-bottom: 1.5%;
padding-top: 1.1%;
background-color: #5b1d15;
}
.footer a {
color: #c87b5a;
}

131
kod/style/style1.css Normal file
View File

@ -0,0 +1,131 @@
body {
color: white;
background-image: url("../../img/space.jpg");
background-size: cover;
margin: 0px;
}
a {
color: white;
text-decoration: none;
}
h1 {
font-family: 'IBM Plex Mono', monospace;
font-size: 60px;
}
h2 {
font-family: 'IBM Plex Mono', monospace;
margin-bottom: 5%;
font-size: 40px;
}
h3 {
font-family: 'IBM Plex Mono', monospace;
font-size: 30px;
}
td {
border: 5px solid white;
font-family: 'Montserrat', sans-serif;
font-weight: bold;
font-size: 25px;
}
tr:hover {
background-color: white;
color: black;
}
p {
font-family: 'IBM Plex Mono', monospace;
font-size: 18px;
margin-left: 10%;
margin-right: 10%;
margin-bottom: 5%;
}
.menu {
text-align: center;
display: flex;
justify-content: center;
font-family: 'Montserrat', sans-serif;
font-size: 20px;
background-color: white;
}
.menu a {
margin: 1%;
background-color: black;
border-radius: 5%;
padding: 0.5%;
color: white;
}
.menu a:hover {
background-color: white;
color: black;
}
.menu #branding {
position: absolute;
display: flex;
top: 1%;
left: 1%;
margin: 0px;
background: none;
}
.menu #branding a {
background: none;
}
.menu #branding img {
width: 60px;
height: 60px;
}
.menu #branding p {
font-size: 30px;
color: black;
margin-left: 10%;
margin-top: 9%;
font-family: 'Oregano', cursive;
}
.body {
text-align: center;
align-items: center;
display: flex;
flex-direction: column;
margin-left: 20%;
margin-right: 20%;
padding-left: 5%;
padding-right: 5%;
padding-top: 4.1%;
padding-bottom: 4.5%;
background-color: black;
}
.body img {
margin-left: 5%;
margin-right: 5%;
}
.footer {
font-family: 'IBM Plex Mono', monospace;
font-size: 16px;
display: flex;
flex-wrap: wrap;
flex-direction: column;
align-items: flex-end;
border-top: 1px grey solid;
padding-bottom: 1%;
padding-top: 1%;
background-color: black;
}
.footer a {
color: grey;
}

132
kod/style/style2.css Normal file
View File

@ -0,0 +1,132 @@
body {
color: #dded00;
background-image: url("../../img/trees.jpg");
background-size: cover;
background-size: cover;
margin: 0px;
}
a {
color: #dded00;
text-decoration: none;
}
h1 {
font-family: 'IBM Plex Mono', monospace;
font-size: 60px;
}
h2 {
font-family: 'IBM Plex Mono', monospace;
margin-bottom: 5%;
font-size: 40px;
}
h3 {
font-family: 'IBM Plex Mono', monospace;
font-size: 30px;
}
td {
border: 5px solid white;
font-family: 'Montserrat', sans-serif;
font-weight: bold;
font-size: 25px;
}
tr:hover {
background-color: #dded00;
color: #615263;
}
p {
font-family: 'IBM Plex Mono', monospace;
font-size: 18px;
margin-left: 10%;
margin-right: 10%;
margin-bottom: 5%;
}
.menu {
text-align: center;
display: flex;
justify-content: center;
font-family: 'Montserrat', sans-serif;
font-size: 20px;
background-color: #dded00;
}
.menu a {
margin: 1%;
background-color: #615263;
border-radius: 5%;
padding: 0.5%;
color: #dded00;
}
.menu a:hover {
background-color: #dded00;
color: #615263;
}
.menu #branding {
position: absolute;
display: flex;
top: 1%;
left: 1%;
margin: 0px;
background: none;
}
.menu #branding a {
background: none;
}
.menu #branding img {
width: 60px;
height: 60px;
}
.menu #branding p {
font-size: 30px;
color: #615263;
margin-left: 10%;
margin-top: 9%;
font-family: 'Oregano', cursive;
}
.body {
text-align: center;
align-items: center;
display: flex;
flex-direction: column;
margin-left: 20%;
margin-right: 20%;
padding-left: 5%;
padding-right: 5%;
padding-top: 4.1%;
padding-bottom: 4.5%;
background-color: #615263;
}
.body img {
margin-left: 5%;
margin-right: 5%;
}
.footer {
font-family: 'IBM Plex Mono', monospace;
font-size: 16px;
display: flex;
flex-wrap: wrap;
flex-direction: column;
align-items: flex-end;
border-top: 1px #919926 solid;
padding-bottom: 1%;
padding-top: 1%;
background-color: #615263;
}
.footer a {
color: #919926;
}

131
kod/style/style3.css Normal file
View File

@ -0,0 +1,131 @@
body {
color: #e7e084;
background-image: url("../../img/meadow.jpg");
background-size: cover;
margin: 0px;
}
a {
color: #e7e084;
text-decoration: none;
}
h1 {
font-family: 'IBM Plex Mono', monospace;
font-size: 60px;
}
h2 {
font-family: 'IBM Plex Mono', monospace;
margin-bottom: 5%;
font-size: 40px;
}
h3 {
font-family: 'IBM Plex Mono', monospace;
font-size: 30px;
}
td {
border: 5px solid white;
font-family: 'Montserrat', sans-serif;
font-weight: bold;
font-size: 25px;
}
tr:hover {
background-color: #e7e084;
color: #2a2121;
}
p {
font-family: 'IBM Plex Mono', monospace;
font-size: 18px;
margin-left: 10%;
margin-right: 10%;
margin-bottom: 5%;
}
.menu {
text-align: center;
display: flex;
justify-content: center;
font-family: 'Montserrat', sans-serif;
font-size: 20px;
background-color: #e7e084;
}
.menu a {
margin: 1%;
background-color: #2a2121;
border-radius: 5%;
padding: 0.5%;
color: #e7e084;
}
.menu a:hover {
background-color: #e7e084;
color: #2a2121;
}
.menu #branding {
position: absolute;
display: flex;
top: 1%;
left: 1%;
margin: 0px;
background: none;
}
.menu #branding a {
background: none;
}
.menu #branding img {
width: 60px;
height: 60px;
}
.menu #branding p {
font-size: 30px;
color: #2a2121;
margin-left: 10%;
margin-top: 9%;
font-family: 'Oregano', cursive;
}
.body {
text-align: center;
align-items: center;
display: flex;
flex-direction: column;
margin-left: 20%;
margin-right: 20%;
padding-left: 5%;
padding-right: 5%;
padding-top: 4.1%;
padding-bottom: 4.5%;
background-color: #2a2121;
}
.body img {
margin-left: 5%;
margin-right: 5%;
}
.footer {
font-family: 'IBM Plex Mono', monospace;
font-size: 16px;
display: flex;
flex-wrap: wrap;
flex-direction: column;
align-items: flex-end;
border-top: 1px #99966d solid;
padding-bottom: 1%;
padding-top: 1%;
background-color: #2a2121;
}
.footer a {
color: #99966d;
}