Everyone needs a little bit Karma
++
Internet for all devices
+Boost your productivity
+Pay as you go
+
+ diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..949483c4a --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "html.autoClosingTags": false +} diff --git a/css/repeat.css b/css/repeat.css new file mode 100644 index 000000000..e69de29bb diff --git a/css/style.css b/css/style.css index 5cb025cef..9bfffe14c 100755 --- a/css/style.css +++ b/css/style.css @@ -1,19 +1,183 @@ +* { + padding: 0; + margin: 0; + border: 0; + outline: 0; + box-sizing: border-box; +} +body { + font-family: "Roboto", sans-serif; + -webkit-font-smoothing: antialiased; +} +h1 { + font-size: 4vw; +} +h2 { + font-size: 2.5vw; +} +h3 { + font-size: 1.5vw; +} - /* We are using the 'Roboto' font from Google. This has already been added to your HTML header */ +.header { + width: 100%; + padding: 1em; +} +.nav { + width: 100%; + display: flex; + justify-content: space-around; + font-size: 1.5vw; +} +.ul_div { + width: 70%; + align-self: center; +} +.ul_div ul { + display: flex; + justify-content: space-evenly; +} +.ul_div ul li { + list-style: none; +} +.nav_link { + color: rgb(41, 39, 39); + text-decoration: none; +} +.nav_link:hover { + color: orangered !important; +} +.logo img { + width: 5vw; +} +/* =============================Hero======================== */ +.hero { + width: 100%; + height: 80vh; + background: url("../img/first-background.jpg"); + background-size: cover; + background-position: center; +} -body { - font-family: 'Roboto', sans-serif; - -webkit-font-smoothing: antialiased; +.overlay_content { + padding-top: 10%; + width: 40%; + margin: 0 auto; + text-align: center; + color: white; + + text-shadow: 0 0 20px black; +} +.overlay_content h3 { + color: rgb(218, 207, 207); +} +.overlay_btn { + padding: 1em; + background: rgb(255, 102, 0); + border-radius: 5px; + margin-top: 5%; + font-size: 1.5vw; } -/** - * Add your custom styles below - * - * Remember: - * - Be organised, use comments and separate your styles into meaningful chunks - * for example: General styles, Navigation styles, Hero styles, Footer etc. - * - * - When using Flexbox, remember the items you want to move around need to be inside a parent container set to 'display: flex' - */ +/* =================Custom
+
+