123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- body {
- background-color: #e5e9f2;
- }
- .read-area {
- background-color: #f9fafc;
- }
- .wrapper {
- padding: 0;
- }
- .hero-area {
- margin-top: 3rem;
- width: 100%;
- height: 400px;
- background-position: center;
- background-repeat: no-repeat;
- background-size: cover;
- }
- .page-content {
- width: 100%;
- position: relative;
- top: -4.5rem;
- padding: 15px;
- }
- .author-profile {
- position: relative;
- align-content: center;
- text-align: center;
- }
- .author-name {
- margin-top: 0px;
- }
- .author-profile img {
- height: 120px;
- width: 120px;
- background-color: #f9fafc;
- padding: 5px;
- }
- .author-profile p {
- color: #8392a5;
- }
- .title {
- text-align: center;
- }
- .post-content {
- padding: 15px;
- }
- .post-content h1,
- h2 {
- margin-top: 1.4rem;
- }
- .post-content h3,
- h4,
- h5,
- h6 {
- margin-top: 1.3rem;
- }
- .post-content blockquote {
- border-left: 4px solid #248aaa;
- background-color: #248baa15;
- padding: 0.3rem;
- padding-left: 1rem;
- }
- .post-content blockquote > p {
- color: #3c4858;
- margin-top: 0.5rem;
- margin-bottom: 0.5rem;
- }
- table {
- border-radius: 0.1rem;
- background: #e5e9f2;
- border: 1px solid #c0ccda;
- padding: 0.1rem;
- }
- table tr {
- height: 40px !important;
- }
- table th,
- td {
- padding: 0.5rem;
- border-left: 1px solid #8392a5;
- border-bottom: 1px solid #8392a5;
- }
- table thead tr {
- background: #248aaa;
- color: #e5e9f2;
- }
- tbody tr:nth-child(odd) {
- background-color: #e5e9f2;
- }
- tbody tr:hover {
- background: #c0ccda;
- }
- figure {
- border: 1px solid #c0ccda;
- height: fit-content;
- width: fit-content;
- align-self: center;
- margin: auto;
- }
- img {
- max-width: 100%;
- }
- caption,
- figcaption {
- caption-side: bottom;
- text-align: center;
- color: #8392a5;
- }
- pre {
- margin: 5px;
- }
- code {
- padding: 10px !important;
- }
- .navbar-toggler {
- display: none;
- }
- ul > ol,
- ol > ul,
- ul > ul,
- ol > ol,
- li > ol,
- li > ul {
- padding-inline-start: 25px;
- }
- kbd {
- background-color: #248aaa !important;
- color: #f9fafc;
- }
- mark {
- background-color: #ffc21280;
- }
- .next-prev-navigator {
- padding-left: 10px;
- padding-right: 10px;
- }
- .next-prev-navigator a {
- color: #2098d1;
- transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- }
- .next-prev-navigator a:hover {
- color: #3c4858;
- transition: all 0.3 ease-out;
- -webkit-transition: all 0.3 ease-out;
- }
- .next-prev-navigator .next-article {
- text-align: right;
- }
- .next-prev-navigator .next-article a {
- transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- }
- .next-prev-navigator .previous-article a {
- transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- }
- .next-prev-navigator .btn-outline-info {
- color: #f9fafc !important;
- border-color: #e5e9f2 !important;
- background-color: #248aaa !important;
- transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- }
- .next-prev-navigator .btn-outline-info:hover {
- color: #3c4858 !important;
- background-color: #e5e9f2 !important;
- transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- }
- .disquss {
- padding: 10px;
- }
- .btn-improve-page{
- text-align: right;
- }
- @media only screen and (max-width: 768px) {
- .wrapper {
- padding-left: 0px;
- padding-right: 0px;
- overflow: hidden;
- }
- .container {
- max-width: 100%;
- }
- }
- @media only screen and (max-width: 576px) {
- .wrapper {
- padding: 0px;
- }
- .hero-area {
- height: 200px;
- }
- .page-content {
- padding: 0px;
- }
- pre {
- margin: 0px;
- }
- code {
- padding: 0px;
- }
- .next-prev-navigator .previous-article {
- text-align: center;
- margin: 5px;
- }
- .next-prev-navigator .next-article {
- text-align: center;
- margin: 5px;
- }
- .previous-article a,
- .next-article a {
- width: 100%;
- }
- #disqus_thread,
- .dsq-brlink {
- padding: 5px;
- }
- }
|