regenerates CSSs
This commit is contained in:
parent
cff1e6e737
commit
58c3bcd9d0
2 changed files with 52 additions and 4 deletions
|
@ -319,6 +319,17 @@ a {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
padding: 2px 6px; }
|
padding: 2px 6px; }
|
||||||
|
|
||||||
|
.post__title {
|
||||||
|
/* For Chrome and Safari */
|
||||||
|
/* For old Fx (3.6 to 15) */
|
||||||
|
/* For pre-releases of IE 10*/
|
||||||
|
/* For old Opera (11.1 to 12.0) */
|
||||||
|
background-image: linear-gradient(to right, #ff2c2c, #7a5e91);
|
||||||
|
/* Standard syntax; must be last */
|
||||||
|
color: transparent;
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
background-clip: text; }
|
||||||
|
|
||||||
.post__subtitle {
|
.post__subtitle {
|
||||||
display: block;
|
display: block;
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
|
@ -380,9 +391,10 @@ code {
|
||||||
font-size: 0.9rem; }
|
font-size: 0.9rem; }
|
||||||
|
|
||||||
code {
|
code {
|
||||||
padding: 2px 4px;
|
padding: .25em .5em;
|
||||||
border: 1px dashed #adb5db;
|
color: #bf616a;
|
||||||
background-color: #f9f9f9; }
|
background-color: #f9f9f9;
|
||||||
|
border-radius: 3px; }
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
|
@ -444,6 +456,42 @@ body .gist .highlight {
|
||||||
body .gist td {
|
body .gist td {
|
||||||
border: none; }
|
border: none; }
|
||||||
|
|
||||||
|
.badge-category,
|
||||||
|
a.badge-category {
|
||||||
|
color: #fff !important;
|
||||||
|
background-color: #0088cc; }
|
||||||
|
|
||||||
|
a.badge-category:hover, a.badge-category:focus {
|
||||||
|
color: #0088cc !important;
|
||||||
|
background: transparent;
|
||||||
|
background-color: transparent;
|
||||||
|
text-decoration: none;
|
||||||
|
border-bottom: none; }
|
||||||
|
|
||||||
|
.badge-tag,
|
||||||
|
a.badge-tag {
|
||||||
|
color: #fff !important;
|
||||||
|
background-color: #7766cc; }
|
||||||
|
.badge-tag:hover, .badge-tag:focus,
|
||||||
|
a.badge-tag:hover,
|
||||||
|
a.badge-tag:focus {
|
||||||
|
color: #7766cc !important;
|
||||||
|
background: transparent;
|
||||||
|
background-color: transparent;
|
||||||
|
text-decoration: none;
|
||||||
|
border-bottom: none; }
|
||||||
|
|
||||||
|
.badge {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 0.25em 0.4em;
|
||||||
|
font-size: 0.75rem;
|
||||||
|
font-weight: bold;
|
||||||
|
line-height: 1;
|
||||||
|
text-align: center;
|
||||||
|
white-space: nowrap;
|
||||||
|
vertical-align: baseline;
|
||||||
|
border-radius: 0.25rem; }
|
||||||
|
|
||||||
.portfolio__content section {
|
.portfolio__content section {
|
||||||
margin-bottom: 1.765rem; }
|
margin-bottom: 1.765rem; }
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue