Skip to content

Commit b5ec321

Browse files
authored
.adminsquares > * {
border: 1px solid #c9ff23; border-radius: 5px; padding: 0px; flex: 1 1 100px; overflow: hidden; } .adminsquares { display: flex; flex-flow: row wrap; padding: 15px; gap: 5px; width:100%; height: auto; } .adminsquares img { width: 100%; }
1 parent 7f36339 commit b5ec321

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

admin.md

+12-3
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,30 @@
22

33
<SECTION>
44
<style>
5+
6+
57
.adminsquares > * {
68
border: 1px solid #c9ff23;
79
border-radius: 5px;
810
padding: 0px;
9-
flex: 1 1 100px;
11+
flex-grow:1;
1012
overflow: hidden;
13+
transition: all 300ms ease-in-out;
14+
15+
&:hover {
16+
flex-grow: 6.3;
17+
1118
}
19+
20+
21+
}
1222

1323
.adminsquares {
1424
display: flex;
1525
flex-flow: row wrap;
26+
1627
padding: 15px;
1728
gap: 5px;
18-
width:100%;
1929
height: auto;
2030
}
2131

@@ -24,7 +34,6 @@
2434
width: 100%;
2535
}
2636

27-
2837
</style>
2938
<div class="adminsquares">
3039
{% for post in site.posts %}

0 commit comments

Comments
 (0)