diff --git a/src/assets/mini_joker.png b/src/assets/mini_joker.png new file mode 100644 index 0000000..c5f2e68 Binary files /dev/null and b/src/assets/mini_joker.png differ diff --git a/src/assets/space_race.png b/src/assets/space_race.png new file mode 100644 index 0000000..311ab45 Binary files /dev/null and b/src/assets/space_race.png differ diff --git a/src/assets/weather_station.png b/src/assets/weather_station.png new file mode 100644 index 0000000..ab16fb2 Binary files /dev/null and b/src/assets/weather_station.png differ diff --git a/src/components/App.vue b/src/components/App.vue index 829b825..e526a12 100644 --- a/src/components/App.vue +++ b/src/components/App.vue @@ -1,20 +1,20 @@ + + diff --git a/src/components/CardContainer.vue b/src/components/CardContainer.vue new file mode 100644 index 0000000..cb2ad93 --- /dev/null +++ b/src/components/CardContainer.vue @@ -0,0 +1,52 @@ + + + + + diff --git a/src/components/GoogleForm.vue b/src/components/GoogleForm.vue deleted file mode 100644 index 8891148..0000000 --- a/src/components/GoogleForm.vue +++ /dev/null @@ -1,44 +0,0 @@ - - - diff --git a/src/stylesheets/main.css b/src/stylesheets/main.css index dbdd9ba..9078b2c 100644 --- a/src/stylesheets/main.css +++ b/src/stylesheets/main.css @@ -1,3 +1,5 @@ +@import url('https://fonts.googleapis.com/css?family=Comfortaa|Patua+One'); + :root { --link-color: #27a1f0; } @@ -8,13 +10,18 @@ body { } #app { - font-family: Avenir, Helvetica, Arial, sans-serif; + font-family: 'Comfortaa', Avenir, Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; - margin-top: 60px; + font-size: 1.2em; + margin-top: 40px; text-align: center; } +h1, h2, h3, h4, h5, h6 { + font-family: 'Patua One'; +} + a { color: var(--link-color); }