forked from MichaelBarney/LinkFree
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: π Create - rain code theme template created
β Closes: MichaelBarney#3
- Loading branch information
Showing
4 changed files
with
124 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |