Skip to content

Commit 558dc46

Browse files
committed
Formatting and making some minor updates to the Organization stylesheet
1 parent 80463ea commit 558dc46

File tree

1 file changed

+21
-15
lines changed

1 file changed

+21
-15
lines changed
Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,34 @@
11
@import 'functions';
2+
@import 'mixins';
23

34
.organization {
4-
padding:1.5em;
5+
padding: 1.5em;
56
}
67

78
.organization__projects {
8-
display:flex;
9-
flex-wrap:wrap;
9+
display: flex;
10+
flex-wrap: wrap;
11+
justify-content: center;
12+
13+
@include break {
14+
justify-content: flex-start;
15+
}
1016
}
1117

1218
.organization__project {
13-
width:275px;
14-
height:400px;
15-
margin-right:1em;
16-
margin-bottom:1em;
17-
padding:1em;
18-
border-radius:2px;
19-
box-shadow:0 0 1px getColor(dove-grey);
20-
overflow:hidden;
21-
background:getColor(concrete);
22-
transition:all 250ms;
19+
width: 280px;
20+
height: 420px;
21+
margin-right: 1em;
22+
margin-bottom: 1em;
23+
padding: 1em;
24+
border-radius: 2px;
25+
box-shadow: 0 0 1px getColor(dove-grey);
26+
overflow: hidden;
27+
background: getColor(concrete);
28+
transition: all 250ms;
2329

2430
&:hover {
25-
box-shadow:0 0 5px getColor(emperor);
26-
background:white;
31+
box-shadow: 0 0 5px getColor(emperor);
32+
background: white;
2733
}
2834
}

0 commit comments

Comments
 (0)