diff --git a/index.php b/index.php index 89c2ad2..03c1fed 100644 --- a/index.php +++ b/index.php @@ -1,9 +1,13 @@ + + Rocknarok Multiverse Time Clock + +
+
-

Rocknarok Multiverse Time Clock

+
-

Rocknarok Universe Current time:

-


+
+

Rocknarok Multiverse Time Clock

+
-

St. Sky Universe Current time:

-

+
+

Rocknarok Universe Current time:

+


-

Kocharion Universe Current time:

-

+

St. Sky Universe Current time:

+

+ +

Kocharion Universe Current time:

+

+
+ + + +
\ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..c621cb5 --- /dev/null +++ b/style.css @@ -0,0 +1,89 @@ +@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap"); + +* { + box-sizing: border-box; + font: inherit; + color: inherit; +} + +/* All */ + +body { + font-family: "Poppins", sans-serif; + color: #333; + background-color: snow; + margin: 0 auto; + /* max-width: 1000px; */ +} + +/* Header */ + +header { + display: flex; + flex-direction: column; + align-items: center; + text-align: center; +} + +h1 { + font-weight: 800; + font-size: 3em; + padding: 18px; +} + +/* Footer */ + +footer { + display: flex; + flex-direction: column; + align-items: center; + flex-grow: 1; + text-align: center; +} + +footer .bottom { + margin: 2em 0; + padding: 0; + text-align: center; +} + +footer .bottom li { + border-left: solid 1px rgba(144, 144, 144, 0.25); + display: inline-block; + list-style: none; + margin-left: 1.5em; + padding-left: 1.5em; +} + +footer .bottom li:first-child { + border-left: 0; + margin-left: 0; + padding-left: 0; +} + +/* Othe Style Elements */ + +ul { + padding-left: 1.5rem; +} + +.item { + padding: 8px; + background-color: white; + border: 4px solid tomato; + border-radius: 6px; + box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25); +} + +.height-50 { + height: 50vh; +} + +/* Main Layout Container */ + +.mainlayout.container { + display: grid; + height: 100vh; + + grid-template-rows: auto 1fr auto; +}