Skip to content

Commit 88c0566

Browse files
committed
starting out with a blank slate
1 parent f53b61c commit 88c0566

38 files changed

+28
-3087
lines changed

addon/styles/_es-accordion.scss

Lines changed: 0 additions & 119 deletions
Original file line numberDiff line numberDiff line change
@@ -1,119 +0,0 @@
1-
.accordion-group {
2-
border: 1px solid $gray-lighter;
3-
border-radius: 2px;
4-
border-bottom: none; //stay last
5-
.accordion {
6-
display: flex;
7-
flex-flow: row wrap;
8-
flex: 1;
9-
min-width: 100%;
10-
.accordion-heading {
11-
align-items: center;
12-
background-color: $white;
13-
border-bottom: 1px solid $gray-lighter;
14-
display: flex;
15-
flex-flow: row wrap;
16-
flex: 1;
17-
height: 54px;
18-
min-width: 100%;
19-
padding: 0 10px;
20-
@media screen and (min-width: 768px) {
21-
padding: 0 36px;
22-
}
23-
&:last-of-type {
24-
border-bottom-color: transparent;
25-
}
26-
&:hover {
27-
background-color: $gray-lightest;
28-
}
29-
&.active {
30-
background-color: $gray-lightest;
31-
}
32-
.content {
33-
background-color: transparent;
34-
color: $black;
35-
flex-flow: row wrap;
36-
flex: 1;
37-
font-weight: 400;
38-
padding-right: 24px;
39-
&:first-of-type {
40-
font-size: 1em;
41-
font-weight: 500;
42-
}
43-
.content-sub {
44-
font-weight: 500;
45-
}
46-
}
47-
.button-icon {
48-
background-color: transparent;
49-
border-color: transparent;
50-
color: $gray;
51-
height: 36px;
52-
width: 36px;
53-
&:hover {
54-
cursor: pointer;
55-
}
56-
}
57-
}
58-
.accordion-body {
59-
border-bottom: 1px solid $gray-lighter;
60-
display: flex;
61-
flex: 1;
62-
flex-flow: row wrap;
63-
min-width: 100%;
64-
padding: 0 10px 1em 10px;
65-
@media screen and (min-width:768px) {
66-
padding: 0 36px 1em 36px;
67-
}
68-
&.collapse {
69-
display: none;
70-
}
71-
72-
.accordion-content{
73-
flex: 1;
74-
&:first-of-type {
75-
&:not(:last-of-type) {
76-
padding-right: 0.5em;
77-
}
78-
}
79-
&:last-of-type {
80-
min-width: 100%;
81-
@media screen and (min-width: 768px) {
82-
min-width: 20%;
83-
max-width: 25%;
84-
padding-left: 1em;
85-
}
86-
}
87-
.content-title {
88-
color: $black;
89-
font-size: 1.2em;
90-
font-weight: 500;
91-
line-height: 1;
92-
margin-top: 1em;
93-
}
94-
.content-list {
95-
list-style: none;
96-
margin: 0;
97-
padding: 0;
98-
li {
99-
margin: 0;
100-
padding: 5px 0 0;
101-
a {
102-
align-items: center;
103-
display: flex;
104-
img {
105-
background-color: $gray-lightest;
106-
border-radius: 50%;
107-
display: inline-block;
108-
height: 30px;
109-
margin-right: 2px;
110-
width: 30px;
111-
}
112-
}
113-
}
114-
}
115-
}
116-
}
117-
.accordion-footer {} //don't need it yet
118-
}
119-
}

addon/styles/_es-aside.scss

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +0,0 @@
1-
.es-aside {
2-
grid-area: sidebar;
3-
}

addon/styles/_es-blog-heading.scss

Lines changed: 0 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +0,0 @@
1-
.es-blog-heading {
2-
.post-title {
3-
&.page-view {
4-
color: $secondary;
5-
font-size: 2.25em;
6-
margin-bottom: 0.01em;
7-
margin-top: 0.7em;
8-
}
9-
10-
&.list-view {
11-
color: $orange-darkest;
12-
font-size: 1.75em;
13-
font-weight: bold;
14-
letter-spacing: none;
15-
line-height: 1;
16-
margin-bottom: 0.19em;
17-
margin-top: 0.2em;
18-
a {
19-
color: $orange-darker;
20-
text-decoration: none;
21-
&:hover {
22-
text-decoration: underline;
23-
}
24-
}
25-
}
26-
}
27-
28-
.post-date {
29-
color: $gray;
30-
display: block;
31-
font-size: 0.8em;
32-
text-transform: uppercase;
33-
padding: 0.2em 0.25em 0 0;
34-
@media screen and (min-width: 768px) {
35-
display: inline-block;
36-
padding: 0 0.25em 0 0;
37-
}
38-
}
39-
40-
.post-author {
41-
color: $gray;
42-
display: inline-block;
43-
font-size: 0.8em;
44-
font-weight: bold;
45-
text-transform: uppercase;
46-
&.guest {
47-
color: $blue;
48-
}
49-
}
50-
}

addon/styles/_es-button.scss

Lines changed: 0 additions & 85 deletions
Original file line numberDiff line numberDiff line change
@@ -1,85 +0,0 @@
1-
.es-button {
2-
background-color: $orange-darker;
3-
border-radius: 3px;
4-
border: 3px solid transparent;
5-
color: $white;
6-
font-family: $font-family-sans-serif;
7-
font-size: 1.2em;
8-
font-weight: 400;
9-
height: 54px;
10-
letter-spacing: 1px;
11-
margin: 9px 0.2em;
12-
min-width: 96px;
13-
padding: 0 24px;
14-
text-decoration: none;
15-
text-transform: uppercase;
16-
transition: all 0.4s ease 0s;
17-
&:hover,
18-
:focus {
19-
background-color: $orange-darkest;
20-
color: $white;
21-
cursor: pointer;
22-
}
23-
24-
&.button-block {
25-
margin: 9px auto;
26-
max-width: 100%;
27-
width: 100%;
28-
box-sizing: border-box;
29-
}
30-
&.button-dense {
31-
font-size: 17px;
32-
height: 48px;
33-
}
34-
&.button-light {
35-
background-color: $white;
36-
border: 3px solid $orange;
37-
color: $orange-darker;
38-
&:hover {
39-
border-color: $orange-darkest;
40-
color: $orange-darkest;
41-
}
42-
}
43-
&.disabled {
44-
background-color: $gray-lightest;
45-
border-color: $gray-lighter !important;
46-
color: $gray-lighter !important;
47-
&:hover,
48-
:focus {
49-
background-color: $gray-lightest;
50-
border-color: $gray-lighter;
51-
color: $gray-lighter;
52-
cursor: not-allowed;
53-
}
54-
}
55-
&.button-link {
56-
background-color: transparent;
57-
border-color: transparent;
58-
color: $orange-darker;
59-
margin: 9px 12px;
60-
padding: 0 12px;
61-
}
62-
&.button-icon {
63-
background-color: transparent;
64-
border-color: transparent;
65-
color: $gray;
66-
height: 36px;
67-
width: 36px;
68-
&:hover {
69-
cursor: pointer;
70-
}
71-
}
72-
&.button-tiny {
73-
display: inline-block;
74-
font-size: 14px;
75-
height: 30px;
76-
line-height: 26px;
77-
vertical-align: middle;
78-
}
79-
@media screen and (max-width: 768px) {
80-
margin: 9px auto;
81-
max-width: 100%;
82-
width: 100%;
83-
box-sizing: border-box;
84-
}
85-
}

addon/styles/_es-card.scss

Lines changed: 0 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +0,0 @@
1-
.es-card {
2-
display: flex;
3-
flex: 1;
4-
justify-content: center;
5-
list-style: none;
6-
margin: 0;
7-
padding-left: 0;
8-
&.border {
9-
li {
10-
border: 4px solid $primary;
11-
}
12-
}
13-
li {
14-
align-content: stretch;
15-
display: flex;
16-
flex-direction: column;
17-
flex: 1;
18-
padding: 1.125em 0.8em 1em 0.8em;
19-
width: 250px;
20-
@media screen and (min-width: 768px) {
21-
max-width: 250px;
22-
margin: 10px;
23-
}
24-
img {
25-
display: block;
26-
clear: both;
27-
margin: 0 auto;
28-
max-width: 100%;
29-
max-height: 150px;
30-
}
31-
h3 {
32-
display: block;
33-
width: 100%;
34-
text-align: center;
35-
color: $black;
36-
font-size: 1.4em;
37-
line-height: 1;
38-
margin-bottom: 0;
39-
// background-color: rgba(252, 249, 247, 0.6);
40-
}
41-
p {
42-
display: block;
43-
font-size: 1em;
44-
line-height: 1.2;
45-
text-align: center;
46-
margin: 0 auto;
47-
max-width: 100%;
48-
padding: 1em 0 0 0;
49-
}
50-
.es-button {
51-
margin: 0 auto;
52-
}
53-
}
54-
}

0 commit comments

Comments
 (0)