Skip to content

Commit e34bbed

Browse files
authored
Merge pull request #18 from pythonpe/fix-style-about
Fix: members style in about page
2 parents 1af8da2 + 6a5999f commit e34bbed

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

_static/css/markdown.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,25 @@ html.dark div.sketchviz-image {
9696
#miembros li p.i-icon:has(a) {
9797
display: none;
9898
}
99+
100+
#miembros ul.postlist {
101+
display: grid;
102+
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
103+
gap: 16px;
104+
list-style: none;
105+
padding: 0;
106+
}
107+
108+
#miembros ul.postlist li.ablog-post {
109+
background-color: #fef1f1;
110+
border-radius: 8px;
111+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
112+
padding: 16px;
113+
text-align: center;
114+
}
115+
116+
117+
html.dark #miembros ul.postlist li.ablog-post {
118+
background-color: #362b2b;
119+
box-shadow: 0 2px 4px rgba(246, 241, 241, 0.1);
120+
}

0 commit comments

Comments
 (0)