fix: anchor tag overflow on chrome bug

This commit is contained in:
Vivek R 2019-10-13 00:52:27 +05:30
parent 1e1a59467c
commit 84ec33e02f

View File

@ -1,14 +1,15 @@
body { body {
font-family: "ubuntu", sans-serif; font-family: "ubuntu", sans-serif;
font-weight: 300; font-weight: 300;
color: #333; color: #333;
line-height: 1.6; line-height: 1.6;
font-size: 16px; font-size: 16px;
} }
a, a:hover { a, a:hover {
color: #a00; color: #a00;
text-decoration: none; text-decoration: none;
word-break: break-word;
} }
html,button,input,select,textarea { html,button,input,select,textarea {
@ -35,18 +36,18 @@ hr {
} }
img { img {
margin: 10px auto 10px auto; margin: 10px auto 10px auto;
max-width: 100%; max-width: 100%;
display: block; display: block;
} }
a img { a img {
border:none; border:none;
} }
figure { figure {
margin: 0; margin: 0;
text-align: center; text-align: center;
} }
fieldset { fieldset {
@ -121,15 +122,15 @@ h6 {
} }
.align-center { .align-center {
text-align: center; text-align: center;
} }
.align-left { .align-left {
text-align: left; text-align: left;
} }
.align-right { .align-right {
text-align: right; text-align: right;
} }
.container { .container {
@ -137,18 +138,18 @@ h6 {
} }
ul { ul {
padding-left: 15px; padding-left: 15px;
} }
ul.flat { ul.flat {
margin: 0; margin: 0;
padding: 0; padding: 0;
} }
ul.flat li { ul.flat li {
display: inline-block; display: inline-block;
list-style: none; list-style: none;
margin-left: 0; margin-left: 0;
} }
.prevent-collapse { .prevent-collapse {
@ -168,7 +169,7 @@ ul {
} }
.post ul li { .post ul li {
margin-bottom: 10px; margin-bottom: 10px;
} }
.post ul li p { .post ul li p {
@ -177,28 +178,28 @@ ul {
.highlight pre { .highlight pre {
margin-bottom: 0; margin-bottom: 0;
margin-top: 0; margin-top: 0;
padding: 20px; padding: 20px;
background-color: transparent !important; background-color: transparent !important;
} }
.highlight { .highlight {
background: 0 0; background: 0 0;
background-color: #FAFAFA; background-color: #FAFAFA;
} }
.wrapper { .wrapper {
max-width: 760px; max-width: 760px;
margin: 0 auto; margin: 0 auto;
} }
.container { .container {
margin-top: 50px; margin-top: 50px;
} }
.header { .header {
margin-bottom: 20px; margin-bottom: 20px;
padding-bottom: 20px; padding-bottom: 20px;
} }
.header h1, .header h1,
@ -214,17 +215,17 @@ ul {
} }
.header nav { .header nav {
margin-top: 20px; margin-top: 20px;
border-top: 1px solid #f4f4f4; border-top: 1px solid #f4f4f4;
} }
.header nav ul, .header nav ul,
.header nav li { .header nav li {
margin: 0; margin: 0;
} }
.header nav ul.flat { .header nav ul.flat {
padding: 0; padding: 0;
} }
.header nav ul.flat li { .header nav ul.flat li {
@ -237,73 +238,73 @@ ul {
} }
.header .site-description { .header .site-description {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
} }
.header .site-description nav { .header .site-description nav {
margin: 0; margin: 0;
padding: 0; padding: 0;
border: none; border: none;
} }
.header .site-description nav ul svg { .header .site-description nav ul svg {
max-height: 15px; max-height: 15px;
} }
.section .section-header { .section .section-header {
font-size: 0.75rem; font-size: 0.75rem;
font-weight: 600; font-weight: 600;
text-transform: uppercase; text-transform: uppercase;
color: #999; color: #999;
margin-bottom: 20px; margin-bottom: 20px;
letter-spacing: 1px; letter-spacing: 1px;
} }
.recent-posts .posts .post { .recent-posts .posts .post {
margin-bottom: 30px; margin-bottom: 30px;
} }
.recent-posts .posts .post .meta, .recent-posts .posts .post .meta,
.post .post-header .meta, .post .post-header .meta,
.list .posts .post .meta { .list .posts .post .meta {
font-size: 0.725rem; font-size: 0.725rem;
color: #999; color: #999;
margin-bottom: 4px; margin-bottom: 4px;
} }
.post .post-header { .post .post-header {
margin-bottom: 30px; margin-bottom: 30px;
} }
.post .post-header .title { .post .post-header .title {
margin: 0; margin: 0;
} }
.post .post-header .meta { .post .post-header .meta {
padding-left: 5px; padding-left: 5px;
margin-top: 10px; margin-top: 10px;
} }
.post .draft-label { .post .draft-label {
color: #a00; color: #a00;
text-decoration: none; text-decoration: none;
padding: 2px 4px; padding: 2px 4px;
border-radius: 4px; border-radius: 4px;
margin-left: 6px; margin-left: 6px;
background-color: #f9f2f4; background-color: #f9f2f4;
} }
.list .posts .post .meta { .list .posts .post .meta {
margin-bottom: 0; margin-bottom: 0;
margin-left: 5px; margin-left: 5px;
} }
.footer { .footer {
text-align: right; text-align: right;
font-size: 0.75em; font-size: 0.75em;
color: #999; color: #999;
border-top: 1px solid #f4f4f4; border-top: 1px solid #f4f4f4;
padding: 20px 0; padding: 20px 0;
margin-top: 40px; margin-top: 40px;
} }
@ -321,61 +322,61 @@ ul {
} }
.pagination { .pagination {
margin: 0; margin: 0;
padding: 0; padding: 0;
text-align: left; text-align: left;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
} }
.pagination li { .pagination li {
list-style: none; list-style: none;
display: inline-block; display: inline-block;
margin: 0; margin: 0;
padding: 0; padding: 0;
} }
.pagination .page-prev { .pagination .page-prev {
margin-right: 20px; margin-right: 20px;
padding-right: 20px; padding-right: 20px;
} }
.pagination .page-item.page-prev { .pagination .page-item.page-prev {
text-align: left; text-align: left;
} }
.pagination .page-item.page-next { .pagination .page-item.page-next {
text-align: right; text-align: right;
} }
@media (max-width: 767px) { @media (max-width: 767px) {
body { body {
padding: 20px; padding: 20px;
} }
h1 { h1 {
font-size: 2rem; font-size: 2rem;
} }
h2 { h2 {
font-size: 1.6rem; font-size: 1.6rem;
} }
h3 { h3 {
font-size: 1.2rem; font-size: 1.2rem;
} }
h4 { h4 {
font-size: 1rem; font-size: 1rem;
} }
.container { .container {
margin-top: 10px; margin-top: 10px;
} }
} }
@media (max-width: 480px) { @media (max-width: 480px) {
body { body {
font-size: 14px; font-size: 14px;
} }
} }