Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
55 changes: 55 additions & 0 deletions about.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
h1 {
color: blue;
font-family: Luminari;
font-size: 30px;
}

h3{
text-decoration: underline;
}

ul{
list-style-type: none;
}

ol{
font-weight: bold;
}

li{
text-align: center;
border: 1px solid red;
border-radius: 10px;
padding-left: 30px;
/* all li's have a 1px red border w/ curved corners)
lists should have 30 px of padding on the left
*/
color: blue;
background-color: rgb(255, 182, 193);
}

body{
background-color:rgb(173,216,230);
font-family: sans-serif;
/* make all the font in the body sans-serif*/
}

p{
padding-top: 20px;
padding-bottom: 20px;
/* all p tags should ahve 20 pixels of padding on the top and the bottom
- not on the sides*/
}

img{
height: 200px;
}

.center{
display:block;
margin-left: auto;
margin-right: auto;
}


/*next: get the background color of the page to match the example, figure out what that circle thing is */
5 changes: 3 additions & 2 deletions about.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<link rel="stylesheet" href="about.css">
<meta charset="utf-8">
<title>CSS Intro</title>
</head>
Expand All @@ -13,7 +14,7 @@ <h1>Your Name Here</h1>
</p>
</div>

<img src="https://www.breakthrough-pt.com/wp-content/uploads/2014/11/female-default-profile-photo.png" alt="" >
<img src="https://www.breakthrough-pt.com/wp-content/uploads/2014/11/female-default-profile-photo.png" alt="" class="center">

<div >
<h3>Here are some of my Skills!</h3>
Expand Down Expand Up @@ -47,7 +48,7 @@ <h2>Contact Me</h2>
Email me at: <a href="mailto:[email protected]" target="_top">[email protected]</a>
</div>

<ul>
<ul id="unordered">
<li> <a href="github.com">github link</a> </li>
<li> <a href="linkedin.com">LinkedIn link</a> </li>
<li> <a href="angellist.com">Angel list link</a> </li>
Expand Down
Loading