-
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.
RENEWED. old fixer upper, but she's still got some spirit (new ui, ne…
…w design, new me)
- Loading branch information
Showing
5 changed files
with
234 additions
and
54 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
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,35 @@ | ||
<!DOCTYPE HTML> | ||
<html> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
|
||
<head> | ||
<title>jules' page!</title> <!-- favicon title --> | ||
<link rel="icon" type="image/x-icon" href="static/favicon.png"> <!-- favicon --> | ||
<link href="style.css" rel="stylesheet"> <!-- css file linked --> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> | ||
<!-- icon import :') (this is so confusing)--> | ||
</head> | ||
|
||
<body> | ||
<div class="card"> | ||
<div class="card-image"> | ||
<!-- <img src="static/avatar.png" alt="jules profile picture"> --> | ||
</div> | ||
<div class="card-content"> | ||
<h2 class="card-title">jules!</h2> | ||
<div class="card-text"> | ||
<p>hey there, it's nice to meet you! :]</p> | ||
<p>my name is jules, and i'm an avid computer science student learning how to become a half stack web developer in hopes that one day i'll be to make a job and live of it. in my free time, i enjoy listening to my indecisive music choices, wasting time on mechanical keyboards, and making videos for the people that i love!</p> | ||
<p>thank you for visiting, i appreciate you being here. enjoy your stay, or come say hi! :D <3</p> | ||
</div> | ||
<div class="card-buttons"> | ||
<a href="mailto:juleselvandrade@gmail.com" class="btn"><i class="fa fa-envelope icon-large"></i></a> | ||
<a href="https://github.com/julesiet" class="btn"><i class="fa fa-github icon-large"></i></a> | ||
<a href="https://www.instagram.com/juleselv.andrade/" class="btn"><i class="fa fa-instagram icon-large"></i></a> | ||
<a href="https://monkeytype.com/profile/smeme" class="btn"><i class="fa fa-keyboard-o icon-large"></i></a> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
|
||
</html> |
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,108 @@ | ||
* { | ||
/* this affects every single element */ | ||
font-family: ProximaNova; | ||
font-weight: bold; | ||
color: #FAF9F6; | ||
} | ||
|
||
@font-face { | ||
font-family: ProximaNova; | ||
src: url(proxima-nova-2/ProximaNovaRegular.otf) | ||
} | ||
|
||
body { | ||
background: #22232F; | ||
} | ||
|
||
.card { | ||
display: flex; | ||
margin: 20px; | ||
border: 5px solid #b2aec1; | ||
border-radius: 5px; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); | ||
background: #b2aec1; | ||
animation: gradient 15s ease infinite; | ||
} | ||
|
||
/* | ||
.card-image { | ||
display: flex; | ||
min-width: 100px; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
.card-image img { | ||
width: 100%; | ||
border-radius: 1rem; | ||
max-width: 300px; | ||
} | ||
*/ | ||
|
||
.card-content { | ||
display: flex; | ||
flex: 2; | ||
flex-direction: column; | ||
padding: 20px; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
.card-title { | ||
font-size: 48px; | ||
text-align: center; | ||
margin: 0 !important; | ||
color: #FDF9ED; | ||
} | ||
|
||
.card-text > p { | ||
font-size: 24px; | ||
text-align: center; | ||
color: #272838; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.card-buttons { | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: center; | ||
align-items: center; | ||
gap: 5px; | ||
} | ||
|
||
.btn { | ||
background-color: #333447; | ||
border-color: #333447; | ||
color: #fff; | ||
padding: 10px 20px; | ||
font-size: 16px; | ||
border-radius: 5px; | ||
text-decoration: none; | ||
display: inline-block; | ||
} | ||
|
||
.btn:hover { | ||
background-color: #565776; | ||
border-color: #565776; | ||
color: #fff; | ||
text-decoration: none; | ||
} | ||
|
||
@media screen and (max-width: 900px) { | ||
.card-title { | ||
font-size: 24px; | ||
} | ||
.card-text { | ||
font-size: 16px; | ||
} | ||
.card { | ||
flex-direction: column; | ||
} | ||
} | ||
|
||
|
||
/* | ||
- k.o kings w/ eric | ||
- group coding project w/ jude, dan, other apcs students that want to cause chaos | ||
- album review page :DDD (THIS ONE IS REALLY COOL!!) I AGREE | ||
*/ |
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