2019-08-18 17:17:16 +00:00
html ,
body {
2020-07-02 14:40:16 +00:00
background-color : # FFFFFF ; /* #FFFCD7; */
color : # 000000 ; /* #A01F13; */
2020-06-27 19:42:50 +00:00
font-family : "Open Sans" , Helvetica , Arial , sans-serif ;
2020-05-19 15:38:28 +00:00
font-size : 1em ;
line-height : 1 . 5em ;
letter-spacing : 0 . 01mm ;
2019-08-18 17:17:16 +00:00
margin : 0 ;
max-width : 100vw ;
padding : 0 ;
width : 100 % ;
2020-07-02 14:40:16 +00:00
height : 100 % ;
2019-08-18 17:17:16 +00:00
}
html {
overflow-y : scroll ;
}
/* links */
2020-01-16 21:35:01 +00:00
a : link {
2019-08-18 17:17:16 +00:00
color : currentColor ;
2020-01-16 21:35:01 +00:00
text-decoration : none ;
2019-08-18 17:17:16 +00:00
}
2020-01-16 21:35:01 +00:00
a : visited {
2019-08-18 17:17:16 +00:00
color : currentColor ;
}
2020-01-16 21:35:01 +00:00
a : hover {
2019-08-18 17:17:16 +00:00
color : currentColor ;
2020-01-16 21:35:01 +00:00
text-decoration : underline ;
2019-08-18 17:17:16 +00:00
}
2020-01-16 21:35:01 +00:00
a : active {
2019-08-18 17:17:16 +00:00
color : currentColor ;
}
. no-hover : hover {
text-decoration : none ;
}
2020-05-19 15:38:28 +00:00
/ * text selection
2019-08-18 17:17:16 +00:00
:: -moz-selection {
2020-01-16 21:35:01 +00:00
background-color : # 0a0a0a ;
2019-08-18 17:17:16 +00:00
color : # ffffff ;
}
:: selection {
2020-01-16 21:35:01 +00:00
background-color : # 0a0a0a ;
2019-08-18 17:17:16 +00:00
color : # ffffff ;
2020-01-20 21:11:42 +00:00
} * /
2019-08-18 17:17:16 +00:00
. no-select {
user-select : none ;
}
/* animations */
. fadein {
animation : fadein 1s ;
}
@ -moz-keyframes fadein {
from {
opacity : 0 ;
}
to {
opacity : 1 ;
}
}
@ -webkit-keyframes fadein {
from {
opacity : 0 ;
}
to {
opacity : 1 ;
}
}
@ keyframes fadein {
from {
opacity : 0 ;
}
to {
opacity : 1 ;
}
}
. fadeinup {
animation : fadeInUp 1s both ease ;
}
@ -moz-keyframes fadeInUp {
from {
opacity : 0 ;
transform : translate3d ( 0 , 40px , 0 ) ;
}
to {
opacity : 1 ;
transform : translate3d ( 0 , 0 , 0 ) ;
}
}
@ -webkit-keyframes fadeInUp {
from {
opacity : 0 ;
transform : translate3d ( 0 , 40px , 0 ) ;
}
to {
opacity : 1 ;
transform : translate3d ( 0 , 0 , 0 ) ;
}
}
@ keyframes fadeInUp {
from {
opacity : 0 ;
transform : translate3d ( 0 , 50px , 0 ) ;
}
to {
opacity : 1 ;
transform : translate3d ( 0 , 0 , 0 ) ;
}
}
/ * = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
container * /
. container {
max-width : 100 % ;
min-height : 75vh ;
position : relative ;
}
@ media screen and ( orientation : landscape ) {
. container {
min-height : 75vh ;
2020-05-19 15:38:28 +00:00
padding : 10vh 5vw ;
2019-08-18 17:17:16 +00:00
}
}
@ media screen and ( orientation : portrait ) {
. container {
min-height : 75vh ;
2020-05-19 15:38:28 +00:00
padding : 10vh 5vw ;
2019-08-18 17:17:16 +00:00
}
}
/ * . content h1 {
margin-top : 40px ;
} * /
. desc {
color : # 808080 ;
font-size : 20px ;
font-weight : 200 ;
}
ul {
list-style-type : none ;
margin : 0 ;
padding : 0 ;
}
/ * = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
library * /
. library . latest {
overflow : auto ;
white-space : nowrap ;
width : 100 % ;
}
. library . latest :: -webkit-scrollbar {
height : 3px ;
}
. library . latest :: -webkit-scrollbar-track {
background-color : # cccccc
}
. library . latest :: -webkit-scrollbar-thumb {
background-color : # 333333
}
. library . latest a {
display : inline-block ;
margin : 0 ;
padding : 10px
}
2020-07-02 14:40:16 +00:00
library . latest h1 {
2019-08-18 17:17:16 +00:00
/ * font-size : 30px ;
font-weight : bold ; * /
margin-top : 15px ;
margin-bottom : 15px ;
width : 100 % ;
}
2020-07-02 14:40:16 +00:00
. library . latest a : hover {
2020-05-19 15:38:28 +00:00
background-color : transparent ;
2019-08-18 17:17:16 +00:00
}
. bookshelves {
margin : 0 auto ;
padding : 0 ;
width : 100 % ;
}
. bookshelves ul {
2020-05-19 15:38:28 +00:00
column-count : 3 ;
2019-08-18 17:17:16 +00:00
column-gap : 0px ;
cursor : default ;
width : 100 % ;
2020-01-16 21:35:01 +00:00
/*height: 620px;*/
2019-08-18 17:17:16 +00:00
}
2020-01-21 20:46:06 +00:00
. bookshelves > ul li :: before {
2020-05-19 15:38:28 +00:00
content : "\25AA" ;
2020-01-21 20:46:06 +00:00
color : # A01F13 ;
2020-05-19 15:38:28 +00:00
display : inline-block ;
2020-01-21 20:46:06 +00:00
width : 1em ;
margin-left : -1em ;
/*font-size: small;*/
}
2020-01-16 21:35:01 +00:00
/ * . bookshelves ul li {
2019-08-18 17:17:16 +00:00
color : # 808080 ;
display : inline-block ;
margin-bottom : 0px ;
padding-right : 10 % ;
width : 90 % ;
2020-01-16 21:35:01 +00:00
} * /
2019-08-18 17:17:16 +00:00
2020-07-02 14:40:16 +00:00
. page_content . bookshelves h2 {
border-bottom : 0px none # FFFFFF ;
2019-09-26 20:41:17 +00:00
}
2019-08-18 17:17:16 +00:00
/ * . library . bookshelves h2 : hover ,
. library . bookshelves ul li : hover {
-moz-transition : all 0 . 2s ease-in-out ;
-o-transition : all 0 . 2s ease-in-out ;
-webkit-transition : all 0 . 2s ease-in-out ;
color : # 000000 ;
cursor : pointer ;
text-decoration : underline ;
transition : all 0 . 2s ease-in-out ;
}
* /
. page_content . library . lib {
margin-bottom : 50px ;
}
/ * @ media only screen and ( max-width : 1200px ) ,
only screen and ( max-device-width : 1200px ) {
. library . bookshelves ul {
-moz-column-count : 2 ;
-moz-column-gap : 0px ;
-webkit-column-count : 2 ;
-webkit-column-gap : 0px ;
column-count : 2 ;
column-gap : 0px ;
}
}
@ media only screen and ( max-width : 1000px ) ,
only screen and ( max-device-width : 1000px ) {
. library . bookshelves ul {
-moz-column-count : 1 ;
-moz-column-gap : 0px ;
-webkit-column-count : 1 ;
-webkit-column-gap : 0px ;
column-count : 1 ;
column-gap : 0px ;
}
. library . bookshelves ul li {
padding-right : 0 ;
width : 100 % ;
}
}
* /
/ * = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
book * /
. book-container {
align-items : center ;
justify-content : center ;
margin : 50px ;
max-width : 1000px ;
}
@ media only screen and ( min-width : 1001px ) {
. book-container {
display : flex ;
}
}
. book . page_content {
background-color : # f5f5f5 ;
box-shadow : none ;
padding : 50px ;
transition : box-shadow 0 . 2s ease-in-out , background-color 0 . 5s ease-in-out ;
}
. book . page_content : hover {
background-color : # ffffff ;
box-shadow : 0 25px 75px rgba ( 0 , 0 , 0 , 0 . 1 ) ;
transition : box-shadow 0 . 2s ease-in-out , background-color 0 . 5s ease-in-out ;
}
. book . section {
display : table-cell ;
padding : 10px ;
}
. book . cover img {
box-shadow : 0px 20px 50px rgba ( 0 , 0 , 0 , 0 . 1 ) ;
max-height : 200px ;
max-width : 150px ;
vertical-align : top ;
}
. book . details . id {
font-family : Consolas , Courier , monospace ;
}
2020-07-02 14:40:16 +00:00
. book . bib_rec li h4 {
font-size : 15px ;
display : inline ;
2019-08-18 17:17:16 +00:00
}
2020-07-02 14:40:16 +00:00
. book . bib_rec ul {
2019-08-18 17:17:16 +00:00
list-style : square inside ;
}
@ media only screen and ( min-width : 1001px ) {
. book . download {
width : 75px ;
}
. book . download {
line-height : 25px ;
width : 130px ;
}
. book . download a li {
display : block ;
}
. book . download ul {
list-style : square inside ;
}
. book . share {
line-height : 25px ;
width : 20px ;
word-wrap : break-word ;
}
. book . share a {
display : block ;
margin : 10px 0 ;
}
}
@ media only screen and ( max-width : 1000px ) {
. book . section {
display : block ;
text-align : center ;
}
. book h1 {
text-align : center ;
}
. book . download a {
display : inline-block ;
text-align : center ;
width : 20 % ;
max-width : 75px ;
}
. book . share a {
display : inline-block ;
margin : 5px ;
}
}
. book . share a {
background : # 000000 ;
border-radius : 50 % ;
color : # ffffff ;
font-size : 13px ;
height : 20px ;
text-align : center ;
width : 20px ;
}
2020-07-02 14:40:16 +00:00
. share-icon img {
height : 20px ;
2019-08-18 17:17:16 +00:00
width : 20px ;
}
/ * = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
about * /
. about {
column-count : 2 ;
column-gap : 0px ;
margin : 0 auto ;
}
. about p ,
. about a {
color : # 808080 ;
display : inline-block ;
font-size : 15px ;
font-weight : 200 ;
margin-bottom : 0px ;
padding-right : 10 % ;
width : 90 % ;
}
. about p . quote {
color : # 000000 ;
font-style : italic ;
font-weight : 500 ;
padding-left : 5 % ;
width : 85 % ;
}
. about a {
text-decoration : underline ;
}
2020-05-19 15:38:28 +00:00
/ * @ media only screen and ( max-width : 1200px ) ,
2019-08-18 17:17:16 +00:00
only screen and ( max-device-width : 1200px ) {
. about {
-moz-column-count : 1 ;
-moz-column-gap : 0px ;
-webkit-column-count : 1 ;
-webkit-column-gap : 0px ;
column-count : 1 ;
column-gap : 0px ;
}
. about p {
width : 100 % ;
padding-right : 0 ;
}
. about p . quote {
width : 95 % ;
}
2020-05-19 15:38:28 +00:00
} * /
2020-07-02 14:40:16 +00:00
. page_content {
2020-06-24 20:59:02 +00:00
margin-top : 40px ;
2019-08-18 17:17:16 +00:00
padding-bottom : 30px ;
}
2020-07-02 14:40:16 +00:00
. page_content figure {
2019-08-18 17:17:16 +00:00
/*border: 3px solid #ddd;*/
2020-01-16 21:35:01 +00:00
border-radius : 5px ;
padding : 10px ;
max-width : 100 % ;
height : auto ;
float : right ;
text-align : center ;
2019-08-18 17:17:16 +00:00
}
2020-07-02 14:40:16 +00:00
. page_content figure img {
2019-08-18 17:17:16 +00:00
width : 100 % ;
2020-05-19 15:38:28 +00:00
vertical-align : baseline ;
2019-08-18 17:17:16 +00:00
}
2020-07-02 14:40:16 +00:00
/ * . thumbnail a {
2019-08-18 17:17:16 +00:00
text-align : center ;
} * /
2020-07-02 14:40:16 +00:00
. box_shadow {
2019-08-18 17:17:16 +00:00
margin-top : 1em ;
margin-bottom : 1em ;
padding : 1ex 1em ;
}
/ * . page_content . page_heading {
font-size : 30px ;
font-weight : bold ;
color : # A01F13 ;
} * /
2019-09-16 17:57:43 +00:00
. page_content h1 :: before {
2020-01-16 21:35:01 +00:00
display : block ;
content : "" ;
visibility : hidden ;
pointer-events : none ;
2019-09-16 17:57:43 +00:00
}
2020-07-02 14:40:16 +00:00
. page_content h1 {
2020-05-19 15:38:28 +00:00
font-size : 1 . 875em ;
2019-08-18 17:17:16 +00:00
font-weight : bold ;
2019-09-16 17:57:43 +00:00
/*margin-top: 15px;*/
2019-08-18 17:17:16 +00:00
margin-bottom : 15px ;
width : 100 % ;
2020-07-02 14:40:16 +00:00
}
2019-09-16 17:57:43 +00:00
. page_content h2 :: before {
2020-01-16 21:35:01 +00:00
display : block ;
content : "" ;
margin-top : -120px ;
height : 120px ;
visibility : hidden ;
pointer-events : none ;
2019-09-16 17:57:43 +00:00
}
2020-07-02 14:40:16 +00:00
. page_content h2 {
2020-05-19 15:38:28 +00:00
font-size : 1 . 5em ;
2020-07-02 14:40:16 +00:00
font-weight : bold ;
margin-top : 15px ;
2019-08-18 17:17:16 +00:00
margin-bottom : 15px ;
2020-07-02 14:40:16 +00:00
width : 100 % ;
2019-08-18 17:17:16 +00:00
}
2019-09-16 17:57:43 +00:00
. page_content h3 :: before {
2020-01-16 21:35:01 +00:00
display : block ;
content : "" ;
margin-top : -120px ;
height : 120px ;
visibility : hidden ;
pointer-events : none ;
}
2020-01-21 20:46:06 +00:00
. page_content > ul li :: before {
2020-01-16 21:35:01 +00:00
color : # A01F13 ;
2020-05-19 15:38:28 +00:00
display : inline-block ;
2020-01-16 21:35:01 +00:00
width : 1em ;
margin-left : -1em ;
2020-01-17 00:04:19 +00:00
/*font-size: small;*/
2020-01-16 21:35:01 +00:00
}
2020-07-02 14:40:16 +00:00
@ media only screen and ( min-width : 750px ) {
. page_content > ul li :: before {
font-size : small ;
}
. bookshelves > ul li :: before {
font-size : small ;
}
2020-01-21 20:46:06 +00:00
}
2020-07-02 14:40:16 +00:00
. page_content ul li {
2020-01-16 21:35:01 +00:00
list-style : none ;
2020-05-19 15:38:28 +00:00
padding : 5px ;
2020-01-16 21:35:01 +00:00
}
2020-07-02 14:40:16 +00:00
/ * . page_content ul {
2020-01-16 21:35:01 +00:00
list-style : square ;
2020-01-15 21:56:03 +00:00
} * /
2019-08-18 17:17:16 +00:00
2020-07-02 14:40:16 +00:00
. page_content p {
2019-08-18 17:17:16 +00:00
/*color: #999999;*/
margin-top : 10px ;
margin-bottom : 10px ;
padding-top : 10px ;
padding-bottom : 10px ;
2020-07-02 14:40:16 +00:00
}
2019-08-18 17:17:16 +00:00
. page_content a : link {
color : # 003366 ;
2020-07-06 20:45:00 +00:00
text-decoration : underline ;
2020-07-02 14:40:16 +00:00
}
2019-08-18 17:17:16 +00:00
. page_content a : visited {
color : # 3E444D ;
}
2020-01-16 21:35:01 +00:00
. page_content a : hover {
color : currentColor ;
/*background:#E7E292;*/
text-decoration : underline ;
background : # BDAE92 ;
2020-07-02 14:40:16 +00:00
}
2020-01-16 21:35:01 +00:00
. page_content a : active {
color : brown ;
2020-07-02 14:40:16 +00:00
}
2020-06-24 19:27:50 +00:00
. page-body {
2020-07-02 14:40:16 +00:00
padding-top : 1px ;
2020-06-24 19:27:50 +00:00
}
2020-01-16 21:35:01 +00:00
2020-07-02 14:40:16 +00:00
. anchor a {
2020-01-16 21:35:01 +00:00
top : -80px ;
}
2020-07-02 14:40:16 +00:00
. contents {
2020-01-16 21:35:01 +00:00
background-color : # f9f9f9 ;
border : 1px solid # a2a9b1 ;
2020-07-02 14:40:16 +00:00
padding : 5px ;
display : inline-block ;
2019-09-26 20:41:17 +00:00
}
2020-07-02 14:40:16 +00:00
. contents ol . inner_1 {
2020-01-16 21:35:01 +00:00
list-style-type : lower-roman ;
2019-09-26 20:41:17 +00:00
}
2020-07-02 14:40:16 +00:00
. contents ol . inner_2 {
2020-01-16 21:35:01 +00:00
list-style-type : lower-alpha ;
2019-10-07 18:43:16 +00:00
}
2020-07-02 14:40:16 +00:00
pre {
2020-01-16 21:35:01 +00:00
border : 1px dashed # 2f6fab ;
background-color : # f9f9f9 ;
2020-07-02 14:40:16 +00:00
padding : 1em ;
2019-09-26 20:41:17 +00:00
}
2019-09-13 16:16:00 +00:00
table {
2020-01-16 21:35:01 +00:00
border-collapse : collapse ;
2019-09-13 16:16:00 +00:00
}
2020-07-02 14:40:16 +00:00
table , th , td {
2020-01-16 21:35:01 +00:00
background-color : # f8f9fa ;
color : # 222 ;
margin : 1em 0 ;
border : 1px solid # a2a9b1 ;
2019-09-13 16:16:00 +00:00
}
/ * table > * > tr > th {
border : 1px solid # a2a9b1 ;
text-align : center ;
} * /
2020-01-16 21:35:01 +00:00
2020-07-02 14:40:16 +00:00
. search_category li {
display : inline-block ;
2019-08-18 17:17:16 +00:00
}
2020-07-02 14:40:16 +00:00
. search_category a {
font-weight : bold ;
2019-08-18 17:17:16 +00:00
}
. footer {
position : absolute ;
2020-05-19 15:38:28 +00:00
left : 0 ;
right : 0 ;
2019-08-18 17:17:16 +00:00
bottom : 0 ;
2020-05-19 15:38:28 +00:00
text-align : center ;
2020-07-02 14:40:16 +00:00
font-size : 0 . 9em ;
2020-05-19 15:38:28 +00:00
width : 100 % ;
2019-08-18 17:17:16 +00:00
}
2020-07-02 14:40:16 +00:00
. footer ul li {
2020-01-16 21:35:01 +00:00
display : inline-block ;
padding : 10px ;
2019-08-18 17:17:16 +00:00
}
2020-07-02 14:40:16 +00:00
. footer img {
vertical-align : baseline ;
2020-05-19 15:38:28 +00:00
}
2020-07-02 14:40:16 +00:00
. cover_title h5 {
white-space : break-spaces ;
overflow : hidden ;
height : 70px ;
2020-05-19 15:38:28 +00:00
text-decoration : none ;
text-align : center ;
2019-08-18 17:17:16 +00:00
}
2020-07-02 14:40:16 +00:00
. cover_title h5 : hover {
overflow-y : visible ;
height : auto ;
2020-05-19 15:38:28 +00:00
}
. cover_image img {
2020-07-02 14:40:16 +00:00
height : 150px ;
width : 100px ;
margin-left : auto ;
margin-right : auto ;
display : block ;
2020-05-19 15:38:28 +00:00
}
. cover_image {
2020-07-02 14:40:16 +00:00
height : auto ;
width : 100px ;
2020-05-19 15:38:28 +00:00
}
/ * . cover_image h5 {
2020-07-02 14:40:16 +00:00
white-space : break-spaces ;
overflow-y : auto ;
height : 100px ;
2020-05-19 15:38:28 +00:00
} * /
2019-08-18 17:17:16 +00:00
2020-01-16 21:35:01 +00:00
/*=====CLASS RULES IMPLEMENTED in pg-desktop-one.css========*/
ul . results li :: before {
content : unset ;
}
2019-08-18 17:17:16 +00:00
@ media only screen and ( max-width : 750px ) {
container {
left : 0 ;
padding : 10 % 10vw ;
position : relative ;
right : 0 ;
width : 80vw ;
}
2020-07-02 14:40:16 +00:00
/ * . content {
2019-08-18 17:17:16 +00:00
margin-top : 180px ;
} * /
2020-07-02 14:40:16 +00:00
. library . latest h1 {
2019-08-18 17:17:16 +00:00
font-size : 18px ;
}
2020-07-02 14:40:16 +00:00
. page_content {
margin-top : 60px ;
2019-08-18 17:17:16 +00:00
height : auto ;
}
2020-07-02 14:40:16 +00:00
. page_content h1 {
font-size : 1 . 125em ;
2019-08-18 17:17:16 +00:00
text-align : center ;
}
2020-07-02 14:40:16 +00:00
. page_content h2 {
font-size : 1em ;
2019-08-18 17:17:16 +00:00
text-align : center ;
}
body {
2020-07-02 14:40:16 +00:00
font-size : 1em ;
2019-08-18 17:17:16 +00:00
}
2020-01-14 21:15:03 +00:00
. bookshelves ul {
2020-05-19 15:38:28 +00:00
column-count : 1 ;
2020-01-14 21:15:03 +00:00
column-gap : 0px ;
cursor : default ;
width : 100 % ;
2020-05-19 15:38:28 +00:00
height : unset ;
/ * . page_content img {
width : 50 % ;
height : 50 % ;
} * /
}
2020-07-02 14:40:16 +00:00
. cover_title h5 {
2020-05-19 15:38:28 +00:00
overflow-y : scroll ;
2020-07-02 14:40:16 +00:00
height : 100px ;
2020-01-14 21:15:03 +00:00
}
2019-08-18 17:17:16 +00:00
}
2020-05-19 15:38:28 +00:00
/*New Cover_image rules only applicable to test_index for latest covers from gutenberg1*/
2020-07-02 14:40:16 +00:00
. library . latest a {
vertical-align : top ;
2020-05-19 15:38:28 +00:00
}
. library . latest a : link {
2020-07-02 14:40:16 +00:00
text-decoration : none ;
2020-05-19 15:38:28 +00:00
}
2020-07-02 14:40:16 +00:00
. library . latest a : hover h5 {
overflow-y : visible ;
height : auto ;
2020-05-19 15:38:28 +00:00
}
/*Old Cover image rules orginally declated in CoverPages.py on autocat3. Keep them so it doesn't break anything if it is used somewhere else on autocat3.*/
. cover-thumb {
display : inline-block ;
background-position : center ;
background-repeat : no-repeat ;
2020-07-02 14:40:16 +00:00
}
. cover-thumb-small {
width : 100px ;
height : 150px ;
}
. cover-thumb-medium {
width : 210px ;
height : 310px ;
}
/* Put theme-specific colors here to make it easy to switch between themes */
/* ORIGINAL THEME */
2020-07-02 18:54:50 +00:00
library . latest h1 {
2020-07-02 14:40:16 +00:00
/ / color : # 999999 ;
color : # A01F13 ;
border-bottom : 2px solid # A01F13 ;
}
. box_shadow {
/ / box-shadow : 10px 10px 8px # F5ECDB ;
background-color : # F5ECDB ;
/ / border : 2px outset # F5ECDB ;
border : 1px solid # eddab7 ;
}
. page_content h1 {
color : # A01F13 ;
border-bottom : 2px solid # A01F13 ;
}
. page_content h2 {
color : # A01F13 ;
border-bottom : 2px solid # A01F13 ;
2020-07-02 18:54:50 +00:00
}
2020-07-02 14:40:16 +00:00
/* BLUE THEME */
2020-07-02 17:11:24 +00:00
2020-07-02 18:54:50 +00:00
/ * library . latest h1 {
2020-07-02 14:40:16 +00:00
color : # A01F13 ;
border-bottom : 2px solid # A01F13 ;
}
. box_shadow {
background-color : # d9eaef ;
border : 1px solid # b2c3c4 ;
}
. page_content h1 {
color : # aa873b ;
}
. page_content h2 {
color : # 9b8053 ;
}
. footer {
background-color : # f0efea ;
}
. footer a : link , . footer a : visited , . footer a : hover , . footer a : active {
color : # 006479 ;
2020-07-02 18:54:50 +00:00
} * /
2020-07-02 17:11:24 +00:00
2020-07-02 14:40:16 +00:00
/* GOLD THEME */
2020-07-02 16:42:52 +00:00
2020-07-02 17:11:24 +00:00
/ * library . latest h1 {
2020-07-02 14:40:16 +00:00
color : # A01F13 ;
border-bottom : 2px solid # A01F13 ;
}
. box_shadow {
background-color : # f3e8be ;
border : 1px solid # eddab7 ;
}
. page_content h1 {
color : # 967f38 ;
}
. page_content h2 {
color : # 967f38 ;
}
. footer {
border-top : 3px solid # e2cc93 ;
}
. footer a : link , . footer a : visited , . footer a : hover , . footer a : active {
color : # 006479 ;
2020-07-02 17:11:24 +00:00
} * /
2020-07-02 16:42:52 +00:00
2020-07-02 14:40:16 +00:00