forked from CenterForDigitalHumanities/rerum-playground
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from oss-slu/rerum-css-consolidation
Issue #27 - Rerum CSS Consolidation
- Loading branch information
Showing
9 changed files
with
220 additions
and
286 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
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,6 @@ | ||
/*This file contains styling rules for use within the About page.*/ | ||
|
||
.json p{ | ||
text-align: left; | ||
margin: 0px; | ||
} |
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,72 @@ | ||
/*This file contains styling rules to be applied when the page footer is loaded.*/ | ||
|
||
/*Footer and button styling from RERUM homepage.*/ | ||
footer { | ||
z-index: 3; | ||
position:fixed; | ||
bottom:0; | ||
width:100vw; | ||
overflow: hidden; | ||
padding: 1rem 0; | ||
background-color: #dfdfdf; | ||
font-family:Arial, Helvetica, sans-serif; | ||
} | ||
|
||
footer .button { | ||
border-color: transparent; | ||
margin:0; | ||
width: 23%; | ||
float: left; | ||
box-sizing: border-box; | ||
} | ||
|
||
footer .button:hover{ | ||
background-color: #a3d1ff; | ||
} | ||
|
||
footer::before{ | ||
content: ""; | ||
position: absolute; | ||
box-shadow: 0 0 3rem #001e3c; | ||
height: 2rem; | ||
top: -2.5rem; | ||
width: 120%; | ||
left: -10%; | ||
} | ||
|
||
/*RERUM homepage footer icons.*/ | ||
.fa-home:before { | ||
content: "\f015"; | ||
} | ||
.fa-comment-o:before { | ||
content: "\f0e5"; | ||
} | ||
.fa-map-marker:before { | ||
content: "\f041"; | ||
} | ||
.fa-wrench:before { | ||
content: "\f0ad"; | ||
} | ||
.fa-cubes:before { | ||
content: "\f1b3"; | ||
} | ||
|
||
.button{ | ||
display: inline-block; | ||
height: 38px; | ||
padding: 0 30px; | ||
color: #555; | ||
text-align: center; | ||
font-size: 11px; | ||
font-weight: 600; | ||
line-height: 38px; | ||
letter-spacing: .1rem; | ||
text-transform: uppercase; | ||
text-decoration: none; | ||
white-space: nowrap; | ||
background-color: transparent; | ||
border-radius: 4px; | ||
border: 1px solid #bbb; | ||
cursor: pointer; | ||
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,7 @@ | ||
/*This file contains styling rules for use within the Home page.*/ | ||
|
||
p{ | ||
max-width: 800px; | ||
margin: auto; | ||
text-align: center; | ||
} |
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
Oops, something went wrong.