Skip to content

Commit

Permalink
Initial commit vision board project
Browse files Browse the repository at this point in the history
  • Loading branch information
sinclairc43 committed Oct 15, 2023
0 parents commit b7bd861
Show file tree
Hide file tree
Showing 10 changed files with 556 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_Store
Thumbs.db
74 changes: 74 additions & 0 deletions css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
body {
background: #e8e8e8;
}

#vision-board {
width: 1200px;
height: 850px;
margin: 50px auto;
overflow: auto;
background-image: url("../img/background.png");
background-size: cover;
font-family: 'Montserrat', sans-serif;
font-size: 20px;
color: #3b3b3b;
text-transform: uppercase;
}

.block {
float: left;
box-sizing: border-box;
width: 33.3333%;
}

.small-block {
height: 210px;
padding: 20px 50px;
}

.large-block {
height: 430px;
padding: 65px 40px;
}

.center {
text-align: center;
}

.right {
text-align: right;
}

.corner {
background: #ffffff;
}

.middle {
background: #3b3b3b;
}

.highlight {
background-color: #fff44f;
font-size: 18px;
padding: 5px 10px;
}

strong {
font-size: 38px;
line-height: 38px;
text-transform: capitalize;
}

.title {
font-size: 30px;
color: #ffffff;
}

.year {
font-family: 'Permanent Marker', cursive;
font-size: 18px;
}

.top-padding {
padding-top: 35px;
}
Loading

0 comments on commit b7bd861

Please sign in to comment.