diff --git a/frontend/index.html b/frontend/index.html new file mode 100644 index 0000000..6b61479 --- /dev/null +++ b/frontend/index.html @@ -0,0 +1,43 @@ + + + + + + + + Strona główna + + + + +
+

Padel

+ Wiadomości + Kalendarz turniejów + Ranking + Wyniki + Kontakt +
+ +
+ +
+
+
+
Nadchodzące turnieje
+
Turniej majowy 2022 +

Propadel|Warszawa

+

13/05/2022 do 15/05/2022

+ +
+
Trójmiasto Cup 2022 +

Padbox | Gdańsk

+

03/06/2022 do 05/06/2022

+ +
+
+
+
+ + + \ No newline at end of file diff --git a/frontend/logowanie/index.html b/frontend/logowanie/index.html index 3bd0a68..80acbe7 100644 --- a/frontend/logowanie/index.html +++ b/frontend/logowanie/index.html @@ -18,7 +18,12 @@
-
+
+
+ +
+

Zapomniałeś hasła?
diff --git a/frontend/logowanie/style.css b/frontend/logowanie/style.css index 2eddee4..4776772 100644 --- a/frontend/logowanie/style.css +++ b/frontend/logowanie/style.css @@ -4,6 +4,16 @@ margin: 0; } */ +input { + text-align: left; +} + +html { + background-image: url(tlo_logowanie.png); + background-attachment: fixed; + background-size: cover; +} + * { /* border: 2px solid red; */ box-sizing: border-box; diff --git a/frontend/logowanie/tlo_logowanie.png b/frontend/logowanie/tlo_logowanie.png new file mode 100644 index 0000000..92ea391 Binary files /dev/null and b/frontend/logowanie/tlo_logowanie.png differ diff --git a/frontend/strona_glowna/style.css b/frontend/style.css similarity index 100% rename from frontend/strona_glowna/style.css rename to frontend/style.css diff --git a/frontend/strona_glowna/index.html b/frontend/zalogowany_organizator/index.html similarity index 92% rename from frontend/strona_glowna/index.html rename to frontend/zalogowany_organizator/index.html index 267efa8..99e9206 100644 --- a/frontend/strona_glowna/index.html +++ b/frontend/zalogowany_organizator/index.html @@ -17,7 +17,8 @@ Ranking Wyniki Kontakt - + + JM
diff --git a/frontend/zalogowany_organizator/style.css b/frontend/zalogowany_organizator/style.css new file mode 100644 index 0000000..1c97b62 --- /dev/null +++ b/frontend/zalogowany_organizator/style.css @@ -0,0 +1,117 @@ +* { + /* border: solid; */ +} + +a { + text-align: center; + line-height: 2; + color: white; + text-decoration: none; +} + +.loginn { + background-color: skyblue; + border-radius: 31px; + border: 1px solid skyblue; + cursor: pointer; + color: #ffffff; + font-family: Arial; + text-decoration: none; + height: 30px; + +} + + +header { + display: flex; + flex-flow: row wrap; + justify-content: space-between; + background-color: #065FD4; + margin: auto; + padding-top: 10px; + padding-bottom: 10px; + +} + +header>p { + text-align: center; + line-height: 0; +} + +.container { + height: 100%; + width: 100%; + display: flex; + justify-content: flex-end; + +} + +.eventHeader { + text-align: center; + padding-top: 5px; + padding-bottom: 5px; +} + +.event { + background-color: #0f64f2; + color: white; + border-style: solid; + border-width: 2px; + margin-top: 25px; + margin-right: 25px; + flex-direction: column; + flex-wrap: wrap; + height: auto; + + +} + +.eventInside { + background-color: white; + color: #4C8BF5; + height: auto; + border: solid; + border-color: lightgray; + padding: 10px; + +} + +.eventInside>p { + color: lightgray; +} + +.myButton { + background-color: #4C8BF5; + border-radius: 28px; + border: 1px solid #4C8BF5; + display: inline-block; + cursor: pointer; + color: #ffffff; + font-family: Arial; + font-size: 9px; + padding: 8px 13px; + text-decoration: none; +} + +.dot { + height: 30px; + width: 30px; + color: white; + background-color: skyblue; + border-radius: 50%; + display: flex; + justify-content: center; + align-items: center; +} + +@media all and (max-width: 800px) { + header { + justify-content: space-around; + } +} + +@media all and (max-width: 800px) { + header { + flex-direction: colum; + } +} \ No newline at end of file