diff --git a/frontend/css/_general.css b/frontend/css/_general.css new file mode 100644 index 0000000..dad5870 --- /dev/null +++ b/frontend/css/_general.css @@ -0,0 +1,28 @@ +*{ + padding: 0; + margin: 0; + box-sizing: border-box; +} + +body { + font-family: OpenSans; + padding: 0 0.5rem; +} + +.flex { + display: flex; +} + +.f-row { + display: flex; + flex-direction: row; +} + +.f-col { + display: flex; + flex-direction: column; +} + +footer { + display: none; +} diff --git a/frontend/css/_variables.css b/frontend/css/_variables.css new file mode 100644 index 0000000..e69de29 diff --git a/frontend/css/home.css b/frontend/css/home.css index e69de29..8abc90a 100644 --- a/frontend/css/home.css +++ b/frontend/css/home.css @@ -0,0 +1,3 @@ +.main-wrapper h1 { + text-align: center; +} diff --git a/frontend/css/nav.css b/frontend/css/nav.css new file mode 100644 index 0000000..2933369 --- /dev/null +++ b/frontend/css/nav.css @@ -0,0 +1,8 @@ +.nav-wrapper { + justify-content: space-between; + padding: 1rem 0.5rem; +} + +a { + color: black; +} diff --git a/frontend/img/tabornici_logo.png b/frontend/img/tabornici_logo.png new file mode 100644 index 0000000..2e768f0 Binary files /dev/null and b/frontend/img/tabornici_logo.png differ diff --git a/frontend/index.php b/frontend/index.php index 8221c9e..8d132b0 100644 --- a/frontend/index.php +++ b/frontend/index.php @@ -11,7 +11,9 @@ // Date Time Zone date_default_timezone_set('Europe/Prague'); - $API_URL = "http://localhost:6060" + $API_URL = "http://localhost:6060"; + + $LOGGEDIN = !false; ?> @@ -20,22 +22,34 @@