Skip to content

Commit

Permalink
disable stylelint in ember-cli-addon-docs/app/app.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Astapov committed Sep 12, 2023
1 parent 2baf4f4 commit a20fb0b
Showing 1 changed file with 35 additions and 13 deletions.
48 changes: 35 additions & 13 deletions packages/ember-cli-mirage-docs/app/styles/app.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* stylelint-disable selector-class-pattern */
:root {
--brand-primary: #0e97ad;
}
Expand All @@ -8,17 +9,21 @@
max-width: 600px;
margin: 4rem auto;
}

.home__section {
margin-bottom: 2.5rem;
}

.home__lead {
margin-top: 0.5rem;
font-size: 18px;
line-height: 1.5;
}

.home__cta {
padding: 3rem 0;
}

.home__cta-link {
color: #22292f;
}
Expand All @@ -28,7 +33,8 @@
margin-top: 3rem;
margin-bottom: 3rem;
}
@media (min-width: 768px) {

@media (width >= 768px) {
.blog {
display: flex;
}
Expand All @@ -38,18 +44,21 @@
width: calc(((100% - 1400px) / 2) + 288px);
padding-left: calc((100% - 1400px) / 2);
}

.blog__content {
max-width: 869px;
padding-left: 1rem;
padding-right: 1rem;
}
@media (min-width: 768px) {

@media (width >= 768px) {
.blog__content {
padding-left: 2rem;
padding-right: 2rem;
}
}
@media (min-width: 992px) {

@media (width >= 992px) {
.blog__content {
padding-left: 5rem;
padding-right: 5rem;
Expand All @@ -58,7 +67,7 @@

.blog-index h1 {
margin-bottom: 1.5rem;
color: rgb(61, 72, 82);
color: rgb(61 72 82);
font-size: 2.25rem;
font-weight: 800;
line-height: 1.25;
Expand All @@ -72,41 +81,47 @@
.blog-index h2 {
line-height: 1.25;
}

.blog-index h2 a {
color: rgb(61, 72, 82);
color: rgb(61 72 82);
text-decoration: none;

/* font-weight: 800;
font-size: 28px; */
}

.blog-index h2 a:hover {
text-decoration: underline;
}

.blog-index p {
color: #8795A1;
color: #8795a1;
}

.blog-detail time,
.blog-index time {
color: #8795A1;
color: #8795a1;
text-transform: uppercase;
font-size: 14px;
font-weight: 500;
}

.blog-detail__back-link {
text-decoration: none;
color: #8795A1;
color: #8795a1;
display: block;
margin-bottom: 30px;
}

.blog-detail__back-link:hover {
color: rgb(61, 72, 82);
color: rgb(61 72 82);
}

.blog-detail__hr {
border-width: 1px;
margin: 3rem 0;
}

.blog-detail__comments {
margin-bottom: 6rem;
}
Expand All @@ -119,6 +134,7 @@
.blog-detail__comment-profile-link {
flex-shrink: 0;
}

.blog-detail__comment-avatar {
border-radius: 4px;
width: 48px;
Expand All @@ -129,27 +145,33 @@
.blog-detail__comment-body {
/* padding-lef */
}

.blog-detail__comment-info {
color: #8795A1;
color: #8795a1;
font-size: 14px;
}

.blog-detail__comment-permalink {
color: #8795A1;
color: #8795a1;
text-decoration: none;
}

.blog-detail__comment-permalink:hover {
color: #3d4852;
}

.blog-detail__username-link {
color: #3d4852;
font-weight: 600;
text-decoration: none;
}

.blog-detail__comments-github-byline {
margin-top: 2rem;
font-style: italic;
color: #8795A1;
color: #8795a1;
}

.blog-detail__comments-github-link {
color: #8795A1;
color: #8795a1;
}

0 comments on commit a20fb0b

Please sign in to comment.