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
/* GeneratePress Site CSS */ /* hide the topbar on mobile devices */ | |
@media (max-width: 768px) { | |
.top-bar { | |
display: none; | |
} | |
} | |
/* rule under top bar */ | |
.top-bar { | |
border-bottom: solid 1px rgba(109,159,170,1.0); |
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
.inside-article, .sidebar .widget, .comments-area { | |
border: 1px solid rgba(232, 234, 237, 1); | |
box-shadow: 0 0 10px rgba(232, 234, 237, 0.5); | |
} |
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
.entry-content p a, .entry-content li a, .entry-summary a, .nav-links a, .site-info a { | |
border-bottom: 2px solid rgba(35, 117, 214, 0.4); | |
} | |
/* fix alignfull class too wide */ | |
body { | |
overflow-x: hidden; | |
} | |
.separate-containers .inside-article { | |
border-bottom: 1px solid rgba(0,0,0,.05); | |
} |