Skip to content
This repository has been archived by the owner on Nov 10, 2024. It is now read-only.

Alberto rodriguez #1

Open
wants to merge 47 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
50318df
initial commit
Apr 25, 2019
6579c2e
added the body, head, and nav tags
Apr 25, 2019
b20685b
added classes to divs and tags
Apr 25, 2019
3a92c10
added section one which will be the about section
Apr 25, 2019
e0c6749
added footer section
Apr 25, 2019
5cedd09
added index.less file for all less imports
Apr 25, 2019
785ee64
added @imports to index.less
Apr 25, 2019
9193fe2
added reset.less file for css resset
Apr 25, 2019
0044c58
added reset to reset.less
Apr 25, 2019
bb357eb
added header.less for all header less styling
Apr 25, 2019
71089cb
added style code to header.less
Apr 25, 2019
e33761b
added global.less for all global styling
Apr 25, 2019
d8ff47d
added global style code
Apr 25, 2019
4272001
added variables.less for variables
Apr 25, 2019
15309d9
added variables defined in variables.less
Apr 25, 2019
4d158c3
added mixins.less
Apr 25, 2019
fe025b0
added buttons mixins used to style buttons
Apr 25, 2019
4a0f94a
added about.less
Apr 25, 2019
7316e1e
added .about to style about me section
Apr 25, 2019
910f93d
added images to use
Apr 25, 2019
9aa4136
add index.js file
Apr 25, 2019
1715a55
add click eventListener to the buttons
Apr 25, 2019
9437ca9
added index.css for all compliled less code
Apr 25, 2019
1741bee
added images folder and image for css
Apr 25, 2019
f882d62
changed css and HTML code to style the landing page
Apr 25, 2019
e2bc76a
added class to section one for about me section
Apr 25, 2019
b9d14e0
created a mixin to make an h1 font
Apr 25, 2019
f129ef2
created a mixin for an h2 font size and color
Apr 25, 2019
1d962cf
added team.less where the team sections code will go
Apr 25, 2019
b010450
added a section for sammy our web UI
Apr 25, 2019
2c6a666
deleated code to make code more readable
Apr 25, 2019
59909d3
added a third dev section for placeholder
Apr 25, 2019
f281cc4
added media query to make the page mobile responsive at 500px
Apr 25, 2019
85c34bd
created a footer.less file to hold all footer css code
Apr 25, 2019
5ebbcbe
added code tos style icons in footer section and linked footer.less t…
Apr 25, 2019
b2c6c39
added about.html to make the about me page
Apr 26, 2019
49f0602
changed about.html to team.html
Apr 26, 2019
bc0f2ab
added dropdown nav bar and linked it to about section and team section
junior90rodriguez Apr 26, 2019
f6da8c0
changed the animation for the button and changed the pointer
junior90rodriguez Apr 28, 2019
0082106
changed code to style page
junior90rodriguez Apr 30, 2019
2d4f6cb
changed background image and added names to devs
May 1, 2019
cd4ad86
added event listeners
May 1, 2019
71e7020
created an element using DOM manipulation
May 1, 2019
6279e55
added an image and changed dunny text for actual text
May 1, 2019
a473615
removed dummy text and replaced witha actual text and added new profi…
May 2, 2019
498caaf
added image to profile
May 3, 2019
b576e82
adedd copyright and changed background color
junior90rodriguez May 6, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added css/images/matthew-henry-49707-unsplash.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added css/images/samson-creative-91091-unsplash.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
342 changes: 342 additions & 0 deletions css/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,342 @@
.button {
font-family: Concert One, cursive;
display: inline-block;
border-radius: 4px;
background-color: #ffffff;
border: none;
color: #5887f9;
text-align: center;
font-size: 28px;
padding: 7px;
width: 200px;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
}
.button span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
.button span:after {
content: '\00bb';
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}
.button:hover span {
padding-right: 25px;
}
.button:hover span:after {
opacity: 1;
right: 0;
}
/* 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;
}
.container {
width: 100%;
margin: 0 auto;
}
.head {
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
height: 100%;
}
.about {
background: #fff;
}
hr {
border-top: #e0e0e0;
}
header {
background-image: linear-gradient(to right top, #5574f7, #4086fd, #3196ff, #31a4ff, #42b2ff, #46b3ff, #4ab5ff, #4eb6ff, #46abff, #45a0ff, #4c94fd, #5887f9);
background-attachment: fixed;
height: 100vh;
}
h1 {
font-size: 6.25em;
font-family: Concert One,cursive;
color: #fff;
text-shadow: 6px 7px gray;
}
nav {
display: flex;
justify-content: flex-end;
}
a {
font-size: 1.25rem;
color: #5887f9;
text-decoration: none;
margin: 10px 20px 0px 0px;
}
.head p {
font-family: Concert One, cursive;
font-size: 2rem;
}
.head-content {
display: flex;
}
.header-image {
width: 400px;
}
#dropbtn {
background-color: transparent;
color: white;
padding: 16px;
font-size: 30px;
border: none;
}
#dropbtn .dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: transparent;
min-width: 160px;
}
.dropdown-content a {
font-family: Concert One, cursive;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {
background-color: #5F76D0;
}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown:hover .dropbtn {
background-color: #fff;
color: black;
}
.about {
text-align: center;
margin-top: 3rem;
font-size: 1.75rem;
}
.about h2 {
margin-bottom: 20px;
}
.about p {
font-family: Concert One, cursive;
margin-bottom: 20px;
color: grey;
}
.about i {
margin-bottom: 30px;
color: #e0e0e0;
}
h2 {
font-family: Concert One,cursive;
font-size: 2rem;
color: #e0e0e0;
}
#dev {
display: flex;
}
@media (max-width: 500px) {
#dev {
display: block;
}
}
@media (max-width: 800px) {
#dev {
flex-direction: column-reverse;
margin-top: 10px;
}
}
.dev-img {
position: relative;
float: left;
width: 500px;
height: 500px;
margin-top: 20px;
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: cover;
border-radius: 100%;
}
.dev {
text-align: center;
margin-top: 3rem;
font-size: 1.75rem;
display: flex;
flex-direction: column;
justify-content: center;
}
@media (max-width: 500px) {
.dev {
border-bottom: none;
}
}
.dev p {
font-family: Concert One, cursive;
margin-bottom: 20px;
color: grey;
}
#dev2 {
display: flex;
flex-direction: row-reverse;
}
@media (max-width: 500px) {
#dev2 {
display: block;
flex-direction: column;
}
}
@media (max-width: 800px) {
#dev2 {
flex-direction: column-reverse;
}
}
footer {
flex-direction: column;
align-items: center;
font-size: 3rem;
display: flex;
justify-content: center;
margin: 30px 0px;
}
footer i {
margin: 0px 10px;
color: #e0e0e0;
}
footer p {
font-size: 1rem;
color: #e0e0e0;
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/IMG_0497.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/IMG_0498.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/christopher-campbell-28567-unsplash.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/hunters-race-408744-unsplash.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/luis-villasmil-1222180-unsplash.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/oliver.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/profile-pic-sc.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/samson-creative-91091-unsplash.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading