123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 |
- .blog {
- table, td, th {
- border: 1px solid black;
- }
- .blogHeader {
- color: #b58733;
- font-size: 30pt;
- padding-top: 10px;
- padding-bottom: 30px;
- .rss {
- a {
- font-size: 12pt;
- padding-left: 4px;
- font-weight: lighter;
- color: $brand-primary;
- vertical-align: middle;
- }
- }
- }
- /* landing page */
- .blog-list {
- max-width: 700px;
- ul.posts {
- list-style: none;
- padding-left: 30px;
- li .newBlog {
- background-color: #3992ab;
- }
- header {
- .title, .details {
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- }
- .adorner {
- height: 50px;
- width: 5px;
- background-color: #f2f2f2;
- position: absolute;
- left: 18px;
- }
- .title {
- font-size: 24px;
- font-weight: 400;
- margin: 0px;
- width: 100%;
- color: $brand-primary-darker;
- }
- .details {
- color: #999;
- font-size: 18px;
- .date {
- color: #2f2f2f;
- }
- .author {
- }
- .comment {
- float: right;
- font-size: 15px;
- }
- }
- }
- section {
- padding-bottom: 100px;
- }
- }
- }
- .social-container{
- max-width: 360px;
- padding-top: 40px;
- .container{
- background-color: #f2f2f2;
- width: 330px;
- height: 868px;
- .header{
- position: relative;
- padding-top: 24px;
- padding-bottom: 20px;
- div{
- float:left;
- color: #808080;
- font-size: 18px;
- padding-left:2px;
- }
- img{
- padding-left:18px;
- }
- }
- .feed{
- background-color: white;
- height: 730px;
- padding: 14px;
- ul {
- list-style-type: none;
- padding: 0;
- li{
- position: relative;
- img{
- top: 0px;
- float: left;
- }
- .name{
- color: black;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- font-weight: bold;
- font-size: 110%;
- padding-left: 8px;
- }
- .handle{
- color:gray;
- font-weight: lighter;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- font-size: 90%;
- padding-left: 7px;
- margin-top: -3px;
- }
- .date{
- color: gray;
- font-weight: bold;
- float: right;
- }
- .content{
- color: black;
- padding-top: 4px;
- padding-left: 1px;
- }
- }
- }
- }
- .promo{
- color: gray;
- background-color: white;
- height: 42px;
- padding-top: 10px;
- margin-top: 12px;
- text-align: center;
- font-size: 110%;
- }
- }
- }
- /* blog post page */
- .post {
- header {
- margin-bottom: 20px;
- .title{
- color: #3992ab;
- font-size: 30pt;
- }
- .author, .date{
- font-size: 14pt;
- color: #999;
- padding: 0 4px;
- }
- .date{
- float:right;
- position: relative;
- top:-20pt;
- }
- }
- section > div.content{
- padding: 40px 0;
- color: black;
- }
- footer{
- background-color: #FFF;
- margin: 100px 0;
- .title{
- color: #3992ab;
- font-size: 12pt;
- margin-top: 20px;
- }
- .author, .date{
- font-size: 10pt;
- color: #999;
- padding: 0 2px;
- }
- .content{
- margin-bottom: 20px;
- }
- }
- }
- .disqus{
- margin: 10px 0;
- }
- section.nextprev-posts{
- div{
- .header{
- padding: 10px 0;
- }
- .title{
- color: #3992ab;
- font-size: 14pt;
- }
- span{
- font-size: 9pt;
- color: #999;
- padding: 0 4px;
- }
- }
- .next , .prev{
- padding: 10px 15px;
- }
- }
- section.nextprev-controls{
- div{
- position: fixed;
- top:37%;
- .title{
- color: white;
- font-size: 12pt;
- }
- span{
- font-size: 9pt;
- color: #999;
- padding: 0 2px;
- }
- div{
- position: relative;
- top: 64px;
- left: 20px;
- z-index:10;
- width: 240px;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- }
- }
- .next {
- right: 0px;
- height:90px;
- width: 321px;
- top:calc(37% - 38px);
- img{
- position: fixed;
- right: 0px;
- }
- }
- .prev{
- left:0px;
- }
- @media (max-width: 1800px) {
- .next {
- img{
- clip: rect(0px, 321px, 89px, 262px);
- top:37%;
- }
- }
- div{
- .title{
- display:none;
- }
- span{
- display:none;
- }
- }
- }
- @media (max-width: 1300px) {
- .next, .prev {
- img{
- display:none;
- }
- }
- }
- }
- }
|