Skip to content

Commit

Permalink
fix: πŸ› Create - rain code theme template created
Browse files Browse the repository at this point in the history
βœ… Closes: MichaelBarney#3
  • Loading branch information
Marincor committed Oct 4, 2021
1 parent 82a0b00 commit dd6bbb2
Show file tree
Hide file tree
Showing 4 changed files with 124 additions and 0 deletions.
48 changes: 48 additions & 0 deletions Templates/RainCode/assets/css/reset.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
47 changes: 47 additions & 0 deletions Templates/RainCode/assets/css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
.container {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
background-image: url(../img/rain\ code.gif);
background-color: rgba(185, 174, 174, 0.1);
background-blend-mode: color;
}

.profile {
width: 100px;
height: 100px;
background-image: url(https://avatars.githubusercontent.com/u/84210050?v=4);
background-position: center;
background-size: cover;
border-radius: 50%;
margin: 2rem;
}

.media {
display: flex;
flex-direction: column;
}

.link {
margin: 2rem;
text-decoration: none;
color: white;
background-color: rgb(15, 31, 20);
width: 15rem;
height: 3rem;
display: flex;
justify-content: center;
align-items: center;
border-radius: 1rem;
font-family: sans-serif;
}

.link:hover {

cursor: pointer;
box-shadow: 0 0 15px white;
background-color: black;
}
Binary file added Templates/RainCode/assets/img/rain code.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions Templates/RainCode/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="./assets//css/reset.css">
<link rel="stylesheet" href="./assets/css/styles.css">
<title>LinkFree - Marincor</title>
</head>

<body>



<main class="container">
<div class="profile"></div>
<div class="media">
<a href="https://github.com/marincor" class="link"><p>github</p></a>
<a href="https://www.linkedin.com/in/gabriel-claudino-marinho-b88823179/" class="link"><p>linkedin</p></a>
<a href="https://marincor-portfolio.vercel.app/" class="link"><p>portfolio</p></a>
</div>

</main>



</body>
</html>

0 comments on commit dd6bbb2

Please sign in to comment.