-
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.
- Loading branch information
0 parents
commit b7bd861
Showing
10 changed files
with
556 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,2 @@ | ||
.DS_Store | ||
Thumbs.db |
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,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; | ||
} |
Oops, something went wrong.