-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
3dfc55f
commit be0128a
Showing
68 changed files
with
7,094 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,21 @@ | ||
#footerpad { | ||
padding-top: 2rem; | ||
padding-bottom: 2rem; | ||
background-color: #2c3e50; | ||
color: #fff; | ||
} | ||
|
||
p { | ||
color: #3C4857; | ||
margin-top: 0; | ||
margin-bottom: 1rem; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
} | ||
|
||
* { | ||
box-sizing: border-box; | ||
} | ||
|
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,57 @@ | ||
.bs-icon { | ||
--bs-icon-size: .75rem; | ||
display: flex; | ||
flex-shrink: 0; | ||
justify-content: center; | ||
align-items: center; | ||
font-size: var(--bs-icon-size); | ||
width: calc(var(--bs-icon-size) * 2); | ||
height: calc(var(--bs-icon-size) * 2); | ||
color: var(--bs-primary); | ||
} | ||
|
||
.bs-icon-xs { | ||
--bs-icon-size: 1rem; | ||
width: calc(var(--bs-icon-size) * 1.5); | ||
height: calc(var(--bs-icon-size) * 1.5); | ||
} | ||
|
||
.bs-icon-sm { | ||
--bs-icon-size: 1rem; | ||
} | ||
|
||
.bs-icon-md { | ||
--bs-icon-size: 1.5rem; | ||
} | ||
|
||
.bs-icon-lg { | ||
--bs-icon-size: 2rem; | ||
} | ||
|
||
.bs-icon-xl { | ||
--bs-icon-size: 2.5rem; | ||
} | ||
|
||
.bs-icon.bs-icon-primary { | ||
color: var(--bs-white); | ||
background: var(--bs-primary); | ||
} | ||
|
||
.bs-icon.bs-icon-primary-light { | ||
color: var(--bs-primary); | ||
background: rgba(var(--bs-primary-rgb), .2); | ||
} | ||
|
||
.bs-icon.bs-icon-semi-white { | ||
color: var(--bs-primary); | ||
background: rgba(255, 255, 255, .5); | ||
} | ||
|
||
.bs-icon.bs-icon-rounded { | ||
border-radius: .5rem; | ||
} | ||
|
||
.bs-icon.bs-icon-circle { | ||
border-radius: 50%; | ||
} | ||
|
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,112 @@ | ||
h1 { | ||
text-align: center; | ||
margin-bottom: 50px; | ||
margin-top: 50px; | ||
} | ||
|
||
.blog-card-blog { | ||
margin-top: 30px; | ||
} | ||
|
||
.blog-card { | ||
display: inline-block; | ||
position: relative; | ||
width: 100%; | ||
margin-bottom: 30px; | ||
border-radius: 6px; | ||
color: rgba(0, 0, 0, 0.87); | ||
background: #fff; | ||
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); | ||
} | ||
|
||
.blog-card .blog-card-image { | ||
height: 60%; | ||
position: relative; | ||
overflow: hidden; | ||
margin-left: 15px; | ||
margin-right: 15px; | ||
margin-top: -30px; | ||
border-radius: 6px; | ||
box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); | ||
} | ||
|
||
.blog-card .blog-card-image img { | ||
width: 100%; | ||
height: 100%; | ||
border-radius: 6px; | ||
pointer-events: none; | ||
} | ||
|
||
.blog-card .blog-table { | ||
padding: 15px 30px; | ||
} | ||
|
||
.blog-table { | ||
margin-bottom: 0px; | ||
} | ||
|
||
.blog-category { | ||
position: relative; | ||
line-height: 0; | ||
margin: 15px 0; | ||
} | ||
|
||
.blog-text-success { | ||
color: #6f6f6f!important; | ||
} | ||
|
||
.blog-card-blog .blog-card-caption { | ||
margin-top: 5px; | ||
} | ||
|
||
.blog-card-caption { | ||
font-weight: 700; | ||
font-family: "Roboto Slab", "Times New Roman", serif; | ||
} | ||
|
||
.blog-card-caption, .blog-card-caption a { | ||
color: #333; | ||
text-decoration: none; | ||
} | ||
|
||
p { | ||
color: #3C4857; | ||
margin-top: 0; | ||
margin-bottom: 1rem; | ||
} | ||
|
||
.blog-card .ftr { | ||
margin-top: 15px; | ||
} | ||
|
||
.blog-card .ftr .author { | ||
color: #888; | ||
} | ||
|
||
.blog-card .ftr div { | ||
display: inline-block; | ||
} | ||
|
||
.blog-card .author .avatar { | ||
width: 36px; | ||
height: 36px; | ||
overflow: hidden; | ||
border-radius: 50%; | ||
margin-right: 5px; | ||
} | ||
|
||
.blog-card .ftr .stats { | ||
position: relative; | ||
top: 1px; | ||
font-size: 14px; | ||
} | ||
|
||
.blog-card .ftr .stats { | ||
float: right; | ||
line-height: 30px; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
} | ||
|
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,91 @@ | ||
.photo-card { | ||
background-color: #2d3638; | ||
border-radius: 10px; | ||
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); | ||
display: flex; | ||
flex-direction: column; | ||
width: 100%; | ||
max-width: 700px; | ||
margin-left: auto; | ||
margin-right: auto; | ||
} | ||
|
||
@media screen and (min-width: 700px) { | ||
.photo-card { | ||
flex-direction: row; | ||
} | ||
} | ||
|
||
.photo-background { | ||
background-position: center; | ||
background-size: cover; | ||
border-top-left-radius: 10px; | ||
border-top-right-radius: 10px; | ||
min-height: 250px; | ||
} | ||
|
||
@media screen and (min-width: 700px) { | ||
.photo-background { | ||
border-top-left-radius: 10px; | ||
border-top-right-radius: 0; | ||
border-bottom-left-radius: 10px; | ||
min-height: none; | ||
width: 50%; | ||
} | ||
} | ||
|
||
.photo-details { | ||
padding: 2.1875em 5%; | ||
} | ||
|
||
@media screen and (min-width: 700px) { | ||
.photo-details { | ||
width: 50%; | ||
} | ||
} | ||
|
||
.photo-details h1, .photo-details h4 { | ||
color: #fff; | ||
font-weight: 500; | ||
margin: 0; | ||
} | ||
|
||
.photo-details h1 { | ||
font-size: 125%; | ||
line-height: 1; | ||
margin-bottom: 0.35em; | ||
} | ||
|
||
.photo-tags ul { | ||
list-style-type: none; | ||
margin: 0; | ||
padding: 0; | ||
display: flex; | ||
flex-wrap: wrap; | ||
font-size: 87.5%; | ||
margin-top: 0.35em; | ||
text-transform: lowercase; | ||
} | ||
|
||
.photo-tags li { | ||
margin: 0 0.35em 0.35em 0; | ||
} | ||
|
||
.photo-tags a { | ||
background-color: #191e20; | ||
border-radius: 50px; | ||
color: #fff; | ||
display: block; | ||
padding: 0.3125em 1.25em; | ||
text-decoration: none; | ||
transition: color 0.3s ease; | ||
} | ||
|
||
.photo-tags a:hover, .photo-tags a:focus { | ||
color: #e37544; | ||
} | ||
|
||
.photo-details p { | ||
color: white; | ||
} | ||
|
Empty file.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.