Created
November 1, 2020 17:50
-
-
Save AdamZWinter/1cd4f941c9286cd09e55a82b7735f2f6 to your computer and use it in GitHub Desktop.
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
/* | |
:root { | |
--myPurple: 8, 0, 24; | |
--purpleButton: 25, 0, 75; | |
--offWhite: 195, 210, 190, 1; | |
--backGrey: 40, 40, 40; | |
--linkBlue: 195, 210, 255, 1; | |
} | |
*/ | |
.page-template-default { | |
background-image: radial-gradient(circle at top left, rgba(20,20,20,0.96), rgba(8, 10, 40, 1)); | |
background-color: rgba(20, 20, 20, 0.96); | |
} | |
.site-title { | |
font-weight: bold; | |
line-height: 1; | |
margin: 0; | |
} | |
ul.nav-menu ul a:hover, | |
.nav-menu ul ul a:hover, | |
ul.nav-menu ul a:focus, | |
.nav-menu ul ul a:focus { | |
background-color: #999999; | |
} | |
.menu-toggle, .menu-toggle:hover, .menu-toggle:focus, .menu-toggle:active { | |
background: none; | |
border: none; | |
color: #ffffff; | |
padding: 12px 0 12px 20px; | |
} | |
.toggled-on .nav-menu li > ul a { | |
color: #ffffff; | |
width: auto; | |
} | |
.toggled-on .nav-menu > li a:hover, .toggled-on .nav-menu > ul a:hover { | |
background-color: #aaaaaa; | |
color: #ffffff; | |
} | |
.navbar { | |
color: #ffffff; | |
background-color: #000000; | |
margin: 0 auto; | |
max-width: 1600px; | |
width: 100%; | |
} | |
.nav-menu li a { | |
color: #ffffff; | |
display: block; | |
font-size: 15px; | |
line-height: 1; | |
padding: 15px 45px; | |
text-decoration: none; | |
} | |
.nav-menu li:hover > a, .nav-menu li a:hover, .nav-menu li:focus > a, .nav-menu li a:focus { | |
background-color: #000000; | |
color: #ffffff; | |
} | |
.navigation a { | |
color: #ffffff; | |
} | |
.navigation a:hover { | |
color: #ffffff; | |
text-decoration: none; | |
background-color: #000000; | |
} | |
.paging-navigation { | |
background-color: #ffffff; | |
padding: 40px 0; | |
} | |
.nav-menu .sub-menu, .nav-menu .children { | |
background-color: #000000; | |
border: 2px solid #bbbbbb; | |
border-top: 0; | |
padding: 0; | |
position: absolute; | |
left: -2px; | |
z-index: 99999; | |
height: 1px; | |
width: 1px; | |
overflow: hidden; | |
clip: rect(1px, 1px, 1px, 1px); | |
} | |
.nav-menu .current_page_item > a, .nav-menu .current_page_ancestor > a, .nav-menu .current-menu-item > a, .nav-menu .current-menu-ancestor > a { | |
color: #ffffff; | |
font-style: italic; | |
} | |
.entry-content a, .comment-content a { | |
color: #8888f0; | |
} | |
a:visited { | |
color: #aaaaff; | |
} | |
.sidebar-container { | |
background-image: radial-gradient(circle at top left, rgba(20,20,20,1), rgba(8, 10, 40, 1)); | |
padding: 100px 0; | |
} | |
.widget-area { | |
display:none; | |
} | |
.site-footer a { | |
color: #00000000; | |
} | |
.site-footer { | |
background-image: radial-gradient(circle at top left, rgba(8, 10, 40, 1), rgba(20,20,20,1)); | |
/*color: #000000;*/ | |
font-size: 14px; | |
text-align: center; | |
} | |
.site-content { | |
background-image: radial-gradient(circle at top left, rgba(20,20,20,0.96), rgba(30, 30, 30, 1)); | |
background-color: rgba(20, 20, 20, 0.96); | |
} | |
.site-content p{ | |
color: #ffffff; | |
} | |
h1, h2, h3, h4, h5, h6 { | |
color: #ffffff; | |
} | |
.wp-caption .wp-caption-text, .entry-caption, .gallery-caption { | |
color: #ffffff; | |
font-size: 18px; | |
font-style: italic; | |
font-weight: 300; | |
margin: 0 0 24px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment