Skip to content

Commit

Permalink
Initial content
Browse files Browse the repository at this point in the history
  • Loading branch information
recollir committed Jun 11, 2024
1 parent 8fa593c commit 3f5284e
Show file tree
Hide file tree
Showing 6 changed files with 138 additions and 1 deletion.
1 change: 0 additions & 1 deletion README.md

This file was deleted.

25 changes: 25 additions & 0 deletions css/reset.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/* Minimal CSS Reset */

html {
box-sizing: border-box;
font-size: 12px;
}

*, *:before, *:after {
box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
margin: 0;
padding: 0;
font-weight: normal;
}

ol, ul {
list-style: none;
}

img {
max-width: 100%;
height: auto;
}
75 changes: 75 additions & 0 deletions css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
/* Typography */

html {
font-family: 'Roboto', sans-serif;
}

@media (min-width: 576px) {
html {
font-size: 14px;
}
}

@media (min-width: 768px) {
html {
font-size: 16px;
}
}

@media (min-width: 992px) {
html {
font-size: 18px;
}
}

@media (min-width: 1200px) {
html {
font-size: 20px;
}
}

.icons-social i {
font-size: 3em;
}

/* Custom Styles */

main {
display: flex;
flex-direction: column;
min-height: 100vh;
justify-content: center;
padding: 0 30px;
text-align: center;
}

main > .intro {
font-family: 'Reem Kufi', sans-serif;
font-size: 3.75em;
font-weight: 600;
}

main > .tagline {
font-size: 1.5rem;
margin: 1.5rem 0;
font-weight: 100;
}

.icons-social i {
padding: 10px;
}

.icons-social a {
text-decoration: none;
}

.devto {
margin-bottom: -0.20rem;
}

.devto svg {
margin-bottom: -0.20rem;
margin-left: 0.675rem;;
width: 2.65rem;
height: 2.65rem;
}
14 changes: 14 additions & 0 deletions css/themes/yellow-black.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/* Theme */

main {
background: #FFEB3B;
color: #1E1E1E;
}

.icons-social a {
color: #1E1E1E;
}

.icons-social a svg path{
fill: #1E1E1E;
}
Binary file added favicon.ico
Binary file not shown.
24 changes: 24 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Familjen Hernandez</title>

<link rel="icon" href="favicon.ico" type="image/png" />

<link href="https://fonts.googleapis.com/css?family=Reem+Kufi|Roboto:300" rel="stylesheet">
<link href="https://use.fontawesome.com/releases/v5.13.1/css/all.css" rel="stylesheet">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/themes/yellow-black.css">
</head>
<body>
<main>
<div class="intro">Hej, hej.</div>
<div class="tagline">Familjen Hernandez</div>
</main>
</body>
</html>

0 comments on commit 3f5284e

Please sign in to comment.